From 4a83a6ce2b153a0b0096e44ae726d9778e95ab72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Wed, 4 Mar 2026 09:41:16 +0800 Subject: [PATCH] =?UTF-8?q?feat(wms):=20=E6=B7=BB=E5=8A=A0=E6=94=B6?= =?UTF-8?q?=E8=B4=A7=E5=8D=95=E4=BD=8D=E5=88=97=E5=B9=B6=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E5=8F=91=E8=B4=A7=E5=8D=95=E6=98=8E=E7=BB=86=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在发货单表格中添加收货单位列 - 隐藏负责人电话列 - 优化发货单明细查询逻辑,增加waybillId判空 - 默认关闭加载遮罩层 --- klp-ui/src/views/wms/delivery/components/detailTable.vue | 7 +++++-- klp-ui/src/views/wms/delivery/waybill/index.vue | 3 ++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/klp-ui/src/views/wms/delivery/components/detailTable.vue b/klp-ui/src/views/wms/delivery/components/detailTable.vue index c83857ad..1fe43377 100644 --- a/klp-ui/src/views/wms/delivery/components/detailTable.vue +++ b/klp-ui/src/views/wms/delivery/components/detailTable.vue @@ -164,7 +164,7 @@ export default { // 按钮loading buttonLoading: false, // 遮罩层 - loading: true, + loading: false, // 选中数组 ids: [], // 非单个禁用 @@ -218,7 +218,10 @@ export default { }, methods: { /** 查询发货单明细列表 */ - getList() { + getList() { + if (!this.waybillId) { + return; + } this.loading = true; listDeliveryWaybillDetail({ ...this.queryParams, waybillId: this.waybillId }).then(response => { this.deliveryWaybillDetailList = response.rows; diff --git a/klp-ui/src/views/wms/delivery/waybill/index.vue b/klp-ui/src/views/wms/delivery/waybill/index.vue index 3acab743..7801cac2 100644 --- a/klp-ui/src/views/wms/delivery/waybill/index.vue +++ b/klp-ui/src/views/wms/delivery/waybill/index.vue @@ -41,6 +41,7 @@ + - +