fix: 横向对比去掉售价列
Some checks failed
PR Preview / teardown-preview (pull_request) Has been skipped
Test / unit-test (push) Successful in 5s
Test / build-check (push) Successful in 4s
PR Preview / test (pull_request) Successful in 5s
PR Preview / deploy-preview (pull_request) Successful in 11s
Test / e2e-test (push) Has been cancelled

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-13 23:20:11 +00:00
parent e4cad1e4e4
commit da00436701

View File

@@ -78,7 +78,6 @@
<tr> <tr>
<th class="th-name">配方名</th> <th class="th-name">配方名</th>
<th v-for="ka in kitAnalysis" :key="ka.id" class="th-kit">{{ ka.name }}</th> <th v-for="ka in kitAnalysis" :key="ka.id" class="th-kit">{{ ka.name }}</th>
<th class="th-price">售价</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@@ -88,17 +87,6 @@
<template v-if="row.costs[ka.id] != null">{{ fmtPrice(row.costs[ka.id]) }}</template> <template v-if="row.costs[ka.id] != null">{{ fmtPrice(row.costs[ka.id]) }}</template>
<template v-else><span class="na"></span></template> <template v-else><span class="na"></span></template>
</td> </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> </tr>
</tbody> </tbody>
</table> </table>