This commit is contained in:
zc
2026-03-17 10:47:57 +08:00
parent 5554cf1548
commit 722fbd988c
16 changed files with 700 additions and 27 deletions

View File

@@ -77,7 +77,7 @@
<tr>
<td class="label-cell">
<div class="label-row">
<div class="label-field">标重(kg)</div>
<div class="label-field">标重(g)</div>
<div class="label-value">{{ labelData.totalCalculatedWeight }}</div>
</div>
</td>
@@ -91,7 +91,7 @@
<tr>
<td class="label-cell">
<div class="label-row">
<div class="label-field">实重(kg)</div>
<div class="label-field">实重(g)</div>
<div class="label-value">{{ labelData.totalWeight || '' }}</div>
</div>
</td>
@@ -147,19 +147,6 @@ const labelData = reactive({
qrCodeData: '',
})
// 标签数据
// const labelData = reactive({
// partName: '物料3',
// partNumber: '1',
// totalCalculatedWeight: '100',
// totalWeight: '100',
// productionDate: '202401010000',
// totalCount: '100',
// packingSignature: '',
// inspectionSignature: '',
// qrCodeData: '10#$$DY',
// })
// 标签容器引用
const labelContainer = ref<HTMLElement | null>(null)