From c862a2860b719f56fcaf609c97a284fbea8701bd Mon Sep 17 00:00:00 2001 From: "zangch@mesnac.com" Date: Tue, 10 Mar 2026 09:57:40 +0800 Subject: [PATCH] =?UTF-8?q?feat(wms):=20=E4=BC=98=E5=8C=96=E5=8F=91?= =?UTF-8?q?=E8=B4=A7=E5=8D=95=E7=BC=96=E8=BE=91=E9=A1=B5=E9=9D=A2=E7=9A=84?= =?UTF-8?q?=E8=A1=A8=E5=8D=95=E6=8E=A7=E5=88=B6=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将硬编码的路由参数条件判断替换为计算属性 - 新增抄送人员表单验证规则和动态显示逻辑 - 重构到货确认相关的表单和验证逻辑 - 移除未使用的到货确认接口导入 - 优化明细表格的编辑权限控制 - 调整流程变量传递逻辑,移除冗余的tManagerId字段 - 修复到货确认节点的审批流程处理方式 --- src/views/wms/wmsShippingBill/edit.vue | 200 +++++++++++++----------- src/views/wms/wmsShippingBill/index.vue | 2 +- 2 files changed, 113 insertions(+), 89 deletions(-) diff --git a/src/views/wms/wmsShippingBill/edit.vue b/src/views/wms/wmsShippingBill/edit.vue index 1714566..41929a3 100644 --- a/src/views/wms/wmsShippingBill/edit.vue +++ b/src/views/wms/wmsShippingBill/edit.vue @@ -50,14 +50,7 @@ - + @@ -205,10 +198,10 @@ - + - + - + WMS物料 - - 新增物料 - + 新增物料 @@ -294,7 +280,7 @@ size="small" style="width: 100%" @change="calculateTotalPrice(scope.row)" - :disabled="routeParams.type === 'view' || routeParams.type === 'approval'" + :disabled="detailFormDisabled" /> @@ -308,7 +294,7 @@ :controls="false" size="small" style="width: 100%" - :disabled="routeParams.type === 'view' || routeParams.type === 'approval'" + :disabled="detailFormDisabled" @change="calculateTotalPrice(scope.row)" /> @@ -320,15 +306,10 @@ - + @@ -457,14 +438,8 @@