From 4f39dcc195f28fa275fc2d065fbf1bf6a46c21b7 Mon Sep 17 00:00:00 2001 From: dengjunjie <dengjunjie@hnkhzn.com> Date: 星期二, 17 六月 2025 00:41:18 +0800 Subject: [PATCH] 优化出入库逻辑 --- 代码管理/WMS/WIDESEA_WMSClient/src/extension/outbound/extend/outOrderDetail.vue | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/extension/outbound/extend/outOrderDetail.vue" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/extension/outbound/extend/outOrderDetail.vue" index f40e3f9..da4d861 100644 --- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/extension/outbound/extend/outOrderDetail.vue" +++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/extension/outbound/extend/outOrderDetail.vue" @@ -169,7 +169,7 @@ title: "璁㈠崟鏄庣粏鐘舵��", type: "tag", width: 180, - bindKey:"orderDetailStatusEnum" + bindKey: "orderDetailStatusEnum", }, { prop: "assignStock", @@ -330,8 +330,7 @@ if (propName == "assignStock") { if ( row.orderDetailStatus !== 0 && - row.orderDetailStatus !== 60 && - row.orderDetailStatus !== 70 + row.orderDetailStatus !== 60 ) { return true; } else { @@ -375,6 +374,7 @@ var item = this.dictionaryList.find((x) => x.dicNo == column.bindKey); if (item) { var dicItem = item.data.find((x) => x.key == row[column.prop]); + console.log(dicItem); if (dicItem) { return dicItem.value; } else { @@ -398,9 +398,11 @@ .text-button:hover { background-color: #f0f9eb !important; } + .el-table .warning-row { background: oldlace; } + .box-table .el-table tbody tr:hover > td { background-color: #d8e0d4 !important; /* color: #ffffff; */ -- Gitblit v1.9.3