feat(报表): 添加发货配卷时间列

在报表配置中添加发货配卷时间列,用于显示配卷事件的时间信息
This commit is contained in:
砂糖
2026-04-15 15:29:13 +08:00
parent ee275d3ea5
commit 8e5ce5c119
2 changed files with 6 additions and 0 deletions

View File

@@ -172,6 +172,7 @@ export default {
{ label: '发货绑定目标客户', value: 'bindConsigneeUnit' },
{ label: '发货绑定单位', value: 'bindSenderUnit' },
{ label: '发货绑定负责人', value: 'bindPrincipal' },
{ label: '发货配卷时间', value: 'bindDeliveryTime' },
{ label: '发货时间', value: 'exportTime' },
],
}

View File

@@ -292,6 +292,11 @@ const defaultColumns = {
prop: "bindPrincipal",
align: "center",
},
{
title: '配卷事件',
prop: 'bindDeliveryTime',
align: 'center'
},
]
}