From 8314972d343283fa7c15b41dac8e311b8b329086 Mon Sep 17 00:00:00 2001
From: Junjie <xjj@123>
Date: 星期二, 19 八月 2025 17:25:15 +0800
Subject: [PATCH] #

---
 Monitor-APP/pages/home/home.vue |   28 +++++++++++++++++++++++-----
 1 files changed, 23 insertions(+), 5 deletions(-)

diff --git a/Monitor-APP/pages/home/home.vue b/Monitor-APP/pages/home/home.vue
index 6404ddc..3b3ab0e 100644
--- a/Monitor-APP/pages/home/home.vue
+++ b/Monitor-APP/pages/home/home.vue
@@ -234,10 +234,11 @@
 											<view style="width: 100%;">鍨嬪彿: {{item.model}}</view>
 											<view style="width: 100%;color: red;font-size: 3.1vw;">瀹㈡埛鍚嶇О: {{item.supp}}</view>
 											<view style="width: 100%;color: red;font-size: 3.1vw;">寮�绁ㄥ鎴�: {{item.kpCstmrName}}</view>
-											<view style="width: 25%;">涓绘暟閲�: {{item.count}}</view>
-											<view style="width: 25%;color: red;font-size: 3.1vw;">杈呮暟閲�: {{item.weight}}</view>
-											<view style="width: 25%;">搴撳瓨: {{item.total}}</view>
-											<view style="width: 25%;">杈呭簱瀛�: {{item.totalWeight}}</view>
+											<!-- <view style="width: 25%;">涓绘暟閲�: {{item.count}}</view> -->
+											<view style="width: 25%;color: red;font-size: 3.1vw;">杈呮暟閲�: {{item.allWeight}}</view>
+											<view style="width: 25%;">搴撳瓨: {{item.allStock}}</view>
+											<view style="width: 25%;">鍓╀綑: {{item.lessStock}}</view>
+											<!-- <view style="width: 25%;">杈呭簱瀛�: {{item.totalWeight}}</view> -->
 										</swiper-item>
 									</swiper>
 								</view>
@@ -552,7 +553,24 @@
 							that.infoText.workNo = res.data[0].workNo
 							that.infoText.sourceLocNo = res.data[0].sourceLocNo
 							that.infoText.staNo = res.data[0].staNo
-							that.swiperList = res.data[0].matDtos
+							
+							let matDtos = res.data[0].matDtos;
+							
+							let allWeight = 0;
+							let allStock = 0;
+							matDtos.forEach((item) => {
+								allWeight += item.weight;
+								allStock += item.totalWeight;
+							})
+							
+							let lessStock = allStock - allWeight;
+							
+							let matDto = matDtos[0];
+							matDto.allWeight = allWeight;
+							matDto.allStock = allStock;
+							matDto.lessStock = lessStock;
+							that.swiperList = [matDto]
+							
 							// that.infoText.matnr = res.data[0].matDtos[0].matnr
 							// that.infoText.specs = res.data[0].matDtos[0].specs
 							// that.infoText.maknx = res.data[0].matDtos[0].maknx

--
Gitblit v1.9.1