From 8e5ce5c11982458c000f6bd7c525f0c46a835277 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Wed, 15 Apr 2026 15:29:13 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=8A=A5=E8=A1=A8):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=8F=91=E8=B4=A7=E9=85=8D=E5=8D=B7=E6=97=B6=E9=97=B4=E5=88=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在报表配置中添加发货配卷时间列,用于显示配卷事件的时间信息 --- klp-ui/src/views/wms/report/components/setting/columns.vue | 1 + klp-ui/src/views/wms/report/js/column.js | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/klp-ui/src/views/wms/report/components/setting/columns.vue b/klp-ui/src/views/wms/report/components/setting/columns.vue index 27c27e36..3bc33fa3 100644 --- a/klp-ui/src/views/wms/report/components/setting/columns.vue +++ b/klp-ui/src/views/wms/report/components/setting/columns.vue @@ -172,6 +172,7 @@ export default { { label: '发货绑定目标客户', value: 'bindConsigneeUnit' }, { label: '发货绑定单位', value: 'bindSenderUnit' }, { label: '发货绑定负责人', value: 'bindPrincipal' }, + { label: '发货配卷时间', value: 'bindDeliveryTime' }, { label: '发货时间', value: 'exportTime' }, ], } diff --git a/klp-ui/src/views/wms/report/js/column.js b/klp-ui/src/views/wms/report/js/column.js index b82fd7ff..88f9ab9d 100644 --- a/klp-ui/src/views/wms/report/js/column.js +++ b/klp-ui/src/views/wms/report/js/column.js @@ -292,6 +292,11 @@ const defaultColumns = { prop: "bindPrincipal", align: "center", }, + { + title: '配卷事件', + prop: 'bindDeliveryTime', + align: 'center' + }, ] }