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

@@ -63,6 +63,9 @@
<template #totalWeight="{ record }">
{{ record.totalWeight + 'g' }}
</template>
<template #totalCalculatedWeight="{ record }">
{{ record.totalCalculatedWeight + 'g' }}
</template>
<template #action="{ record }">
<a-space>
@@ -171,8 +174,9 @@ const columns = ref<TableInstanceColumns[]>(processColumns([
{ title: '物料名称', dataIndex: 'materialName' },
{ title: '物料编码', dataIndex: 'encoding' },
{ title: '单位克重', dataIndex: 'unitWeight' ,slotName: 'unitWeight'},
{ title: '总重量', dataIndex: 'totalWeight' ,slotName: 'totalWeight'},
{ title: '总数量', dataIndex: 'totalCount' },
{ title: '标准总重量', dataIndex: 'totalCalculatedWeight' ,slotName: 'totalCalculatedWeight'},
{ title: '实际总重量', dataIndex: 'totalWeight' ,slotName: 'totalWeight'},
{ title: '创建时间', dataIndex: 'createTime', width: 180 },
{
title: '操作',