fix: merge serial number and batch number display in stocktake draft list

This commit is contained in:
DXC
2026-03-19 11:21:48 +08:00
parent ae4b4d586e
commit 2701e94d38

View File

@ -233,7 +233,7 @@
<el-table-column prop="name" label="名称" min-width="90" show-overflow-tooltip />
<el-table-column prop="sku" label="SKU" width="110" show-overflow-tooltip />
<el-table-column prop="batch_no" label="批次" width="85" show-overflow-tooltip>
<el-table-column label="序列号/批次" min-width="140" show-overflow-tooltip>
<template #default="scope">
{{ scope.row.serial_number || scope.row.batch_no || '-' }}
</template>