From 75b4bf4554da6622cfe00f577829b256fc44f32c Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期五, 19 四月 2024 11:55:34 +0800 Subject: [PATCH] 产品清空操作选择下拉数据之后列表数据对不上的问题修改 --- src/views/overview/OverviewListView.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/overview/OverviewListView.vue b/src/views/overview/OverviewListView.vue index 177b5e5..ef84b5c 100644 --- a/src/views/overview/OverviewListView.vue +++ b/src/views/overview/OverviewListView.vue @@ -393,9 +393,9 @@ toLocation: arr.toLocation.name, adjunctUnit:item.auxiliaryUnit, adjunctAmount:item.auxiliaryAmount, - grossWeight:item.product.grossWeight, + grossWeight:item.product.grossWeight==0?'':item.product.grossWeight, totalGrossWeight:item.totalGrossWeight, - netWeight:item.product.netWeight, + netWeight:item.product.netWeight==0?'':item.product.netWeight, totalNetWeight:item.totalNetWeight, } }) -- Gitblit v1.8.0