From 03cfba0f636b42417070fc8caef44bcdd792a085 Mon Sep 17 00:00:00 2001
From: haoxuan <haoxuan>
Date: 星期二, 07 五月 2024 17:34:37 +0800
Subject: [PATCH] 概述 出库模块 编辑的时候循环处理对应产品调用接口获取在库数量的逻辑处理

---
 src/views/overview/OverviewListView.vue |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/views/overview/OverviewListView.vue b/src/views/overview/OverviewListView.vue
index ef84b5c..48dc227 100644
--- a/src/views/overview/OverviewListView.vue
+++ b/src/views/overview/OverviewListView.vue
@@ -1,8 +1,8 @@
 <template>
   <div class="rightContent">
-    <!-- <div class="label-fixed-element">
+    <div class="label-fixed-element">
       <span>{{ params.name }}</span>
-    </div> -->
+    </div>
     <div class="top">
       <SearchCommonView
         :add-title="'鏂板缓'"
@@ -394,9 +394,9 @@
           adjunctUnit:item.auxiliaryUnit,
           adjunctAmount:item.auxiliaryAmount,
           grossWeight:item.product.grossWeight==0?'':item.product.grossWeight,
-          totalGrossWeight:item.totalGrossWeight,
+          totalGrossWeight:item.totalGrossWeight==0?'':item.totalGrossWeight,
           netWeight:item.product.netWeight==0?'':item.product.netWeight, 
-          totalNetWeight:item.totalNetWeight,  
+          totalNetWeight:item.totalNetWeight==0?'':item.totalNetWeight,  
         }
       })
       this.productTableList.tableInfomation = list
@@ -524,7 +524,7 @@
   overflow: hidden;
   .body {
     box-sizing: border-box;
-    padding: 10px 20px;
+    padding: 10px 0px;
     border-radius: 12px;
     height: calc(100% - 70px);
     .content-top {
@@ -583,8 +583,8 @@
   }
 }
 .label-fixed-element {
-  background: #e6ecf2;
   position: fixed;
+  background:#f8f8f9;
   font-size: 14px;
   width: calc(100% - 530px);
   height: 45px;

--
Gitblit v1.8.0