From 92052c4244de5255c6865c542983530ab783efb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Wed, 26 Nov 2025 11:06:17 +0800 Subject: [PATCH] =?UTF-8?q?feat(wms):=20=E6=96=B0=E5=A2=9E=E5=8F=91?= =?UTF-8?q?=E8=B4=A7=E5=8D=95=E6=98=8E=E7=BB=86=E7=BB=84=E4=BB=B6=E5=B9=B6?= =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=8F=91=E8=B4=A7=E5=8D=95=E4=B8=BB=E7=95=8C?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refactor(waybill): 重构发货单主界面布局,增加发货计划树形选择 fix(MemoInput): 修正自定义事件名称从select改为input --- klp-ui/src/components/MemoInput/index.vue | 2 +- .../wms/delivery/componnets/detailTable.vue | 343 ++++++++++++++++++ .../src/views/wms/delivery/waybill/index.vue | 308 +++++++++------- 3 files changed, 521 insertions(+), 132 deletions(-) create mode 100644 klp-ui/src/views/wms/delivery/componnets/detailTable.vue diff --git a/klp-ui/src/components/MemoInput/index.vue b/klp-ui/src/components/MemoInput/index.vue index 633f86f4..fe58ed8f 100644 --- a/klp-ui/src/components/MemoInput/index.vue +++ b/klp-ui/src/components/MemoInput/index.vue @@ -106,7 +106,7 @@ export default { this.cacheInputValue(item.value); this.inputValue = item.value; // 触发自定义事件,通知父组件选中结果 - this.$emit('select', item.value); + this.$emit('input', item.value); }, /** diff --git a/klp-ui/src/views/wms/delivery/componnets/detailTable.vue b/klp-ui/src/views/wms/delivery/componnets/detailTable.vue new file mode 100644 index 00000000..c62754f7 --- /dev/null +++ b/klp-ui/src/views/wms/delivery/componnets/detailTable.vue @@ -0,0 +1,343 @@ + + + diff --git a/klp-ui/src/views/wms/delivery/waybill/index.vue b/klp-ui/src/views/wms/delivery/waybill/index.vue index bcc1ce98..12411684 100644 --- a/klp-ui/src/views/wms/delivery/waybill/index.vue +++ b/klp-ui/src/views/wms/delivery/waybill/index.vue @@ -1,131 +1,93 @@