From 924ce82faeec6d896fcdc360b279215e84b69fb9 Mon Sep 17 00:00:00 2001
From: ZengTao <2773468879@qq.com>
Date: 星期四, 11 九月 2025 11:44:44 +0800
Subject: [PATCH] 1、代码补充提交

---
 UI-Project/src/views/Slicecage/slicecage.vue |   35 +++++++++++++++++++++++++++++++++--
 1 files changed, 33 insertions(+), 2 deletions(-)

diff --git a/UI-Project/src/views/Slicecage/slicecage.vue b/UI-Project/src/views/Slicecage/slicecage.vue
index 635d246..8a60018 100644
--- a/UI-Project/src/views/Slicecage/slicecage.vue
+++ b/UI-Project/src/views/Slicecage/slicecage.vue
@@ -18,6 +18,7 @@
 const dialogFormVisibleb = ref(false)
 const dialogFormVisiblec = ref(false)
 const dialogFormVisibles = ref(false)
+const dialogFormVisibleq = ref(false)
 const tableData = ref([])
 const tableDatagh = ref([])
 const tableDatab = ref([])
@@ -27,6 +28,7 @@
 const tableDatae = ref([])
 const tableDatax = ref([])
 const tableDatas = ref([])
+const tableDataq = ref([])
 const carPosition = ref([])
 const ganghua = ref('')
 const adjustedRects = ref([]);
@@ -712,6 +714,19 @@
   }
 }
 
+const fetchFlowss = async () => {
+  try {
+    const response = await request.post('/cacheVerticalGlass/bigStorageCageDetails/selectFlowCardCount');
+    if (response.code === 200) {
+      tableDataq.value = response.data
+    } else {
+      ElMessage.warning(response.msg)
+    }
+  } catch (error) {
+    // console.error('Error fetching rects :', error);  
+  }
+}
+
 const scheduleTime = async () => {
   try {
     const response = await request.post('/cacheVerticalGlass/bigStorageCageDetails/scheduleTime')
@@ -1014,11 +1029,15 @@
       $t('searchOrder.dutyinformation') }}</el-button>
     <el-button style="margin-top: 5px;margin-left: 10px;" id="searchButton" type="info"
       @click="dialogFormVisibles = true; fetchFlows()">{{ $t('searchOrder.searchlayout') }}</el-button>
+
+    <el-button style="margin-top: 5px;margin-left: 10px;" id="searchButton" type="info"
+      @click="dialogFormVisibleq = true; fetchFlowss()">{{ $t('searchOrder.processcardinquiry') }}</el-button>
+
     <el-switch style="margin-top: 5px;margin-left: 10px;" v-model="ganghua" class="mb-2"
       :inactive-text="$t('searchOrder.temperedswitch')" @change="handleChange" />
-    <el-button style="margin-top: 10px;margin-left: 10px;margin-bottom: 10px;" id="searchButton" type="primary"
+    <!-- <el-button style="margin-top: 10px;margin-left: 10px;margin-bottom: 10px;" id="searchButton" type="primary"
       @click="dialogFormVisibleaDownGlasss = true">鏍囩鎵撳嵃
-    </el-button>
+    </el-button> -->
     <div style="display: flex;">
       <el-card style="flex: 1;margin-left: 10px;margin-top: 5px;" v-loading="loading">
         <div style="width: 98%; height: calc(100% - 35px); overflow-y: auto;max-height: 240px;">
@@ -1672,6 +1691,18 @@
       </el-table-column>
     </el-table>
   </el-dialog>
+  <el-dialog v-model="dialogFormVisibleq" top="5vh" width="85%" :title="$t('searchOrder.processcardqueriesa')">
+    <el-table ref="table" style="margin-top: 20px;height: 500px;" :data="tableDataq"
+      :header-cell-style="{ background: '#F2F3F5 ', color: '#1D2129' }">
+      <el-table-column prop="engineerId" fixed align="center" :label="$t('searchOrder.projectnumber')" />
+      <el-table-column prop="flowCardIdCount" align="center" :label="$t('searchOrder.cardnumber')" />
+      <el-table-column prop="totalTemper" align="center" :label="$t('searchOrder.totalTemper')" />
+      <el-table-column prop="glassTotalArea" align="center" :label="$t('searchOrder.totalAreas')" />
+      <el-table-column prop="cageTemper" align="center" :label="$t('searchOrder.cageTemper')" />
+      <el-table-column prop="cageArea" align="center" :label="$t('searchOrder.cageArea')" />
+      
+    </el-table>
+  </el-dialog>
   <el-dialog v-model="dialogFormVisibleaDownGlasss" top="2vh" width="97%" title="浜哄伐涓嬬墖淇℃伅">
     <div style="display:flex;justify-content: space-around;">
       <el-card

--
Gitblit v1.8.0