feat: 套装方案对比与导出功能 #32

Merged
hera merged 37 commits from feat/kit-comparison-export into main 2026-04-14 13:32:34 +00:00
Showing only changes of commit da00436701 - Show all commits

View File

@@ -78,7 +78,6 @@
<tr>
<th class="th-name">配方名</th>
<th v-for="ka in kitAnalysis" :key="ka.id" class="th-kit">{{ ka.name }}</th>
<th class="th-price">售价</th>
</tr>
</thead>
<tbody>
@@ -88,17 +87,6 @@
<template v-if="row.costs[ka.id] != null">{{ fmtPrice(row.costs[ka.id]) }}</template>
<template v-else><span class="na"></span></template>
</td>
<td class="td-price">
<div class="price-input-wrap">
<span>¥</span>
<input
type="number"
:value="getSellingPrice(row.id)"
@change="setSellingPrice(row.id, $event.target.value)"
class="selling-input"
/>
</div>
</td>
</tr>
</tbody>
</table>