From d84b2d30b7f6b2079e91ec037b4463af7f9fb7ed Mon Sep 17 00:00:00 2001
From: zhoushihao <zsh19950802@163.com>
Date: 星期三, 15 十月 2025 15:20:19 +0800
Subject: [PATCH] 1、 fixbug:玻璃总量计算错误异常

---
 UI-Project/src/views/Caching/cachingunhistory.vue |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/UI-Project/src/views/Caching/cachingunhistory.vue b/UI-Project/src/views/Caching/cachingunhistory.vue
index feabe45..bebbc58 100644
--- a/UI-Project/src/views/Caching/cachingunhistory.vue
+++ b/UI-Project/src/views/Caching/cachingunhistory.vue
@@ -168,8 +168,8 @@
         endTime: getglobalDate
     })
       if (response.code == 200) {
-        countOutTwo.value = response.data.countOutTwo
-        totalAreaOutTwo.value = response.data.totalAreaOutTwo
+        countOutOne.value = response.data.countOutOne
+        totalAreaOutOne.value = response.data.totalAreaOutOne
       } else {
         ElMessage.error(response.message);
     }
@@ -223,8 +223,8 @@
         endDate: (formatTimestamp(timeRange.value) && formatTimestamp(timeRange.value[1])) || '',
     })
       if (response.code == 200) {
-        countOutTwo.value = response.data.countOutTwo
-        totalAreaOutTwo.value = response.data.totalAreaOutTwo
+        countOutOne.value = response.data.countOutOne
+        totalAreaOutOne.value = response.data.totalAreaOutOne
       } else {
         ElMessage.error(response.message);
     }
@@ -278,8 +278,8 @@
         endDate: (formatTimestamp(timeRange.value) && formatTimestamp(timeRange.value[1])) || '',
     })
       if (response.code == 200) {
-        countOutTwo.value = response.data.countOutTwo
-        totalAreaOutTwo.value = response.data.totalAreaOutTwo
+        countOutOne.value = response.data.countOutOne
+        totalAreaOutOne.value = response.data.totalAreaOutOne
       } else {
         ElMessage.error(response.message);
     }

--
Gitblit v1.8.0