From b3a4243739344b92af9339171e72829001b56fdf Mon Sep 17 00:00:00 2001
From: wangfei <3597712270@qq.com>
Date: 星期四, 30 十月 2025 15:01:34 +0800
Subject: [PATCH] 上片模块、钢化前大理片笼新增进页面接口,隐藏中空线预览任务按钮

---
 UI-Project/src/views/Slicecage/slicecage.vue |  243 +++++++++++++++++++++++++++++++++++++++++++-----
 1 files changed, 217 insertions(+), 26 deletions(-)

diff --git a/UI-Project/src/views/Slicecage/slicecage.vue b/UI-Project/src/views/Slicecage/slicecage.vue
index 47e82b4..5d4d162 100644
--- a/UI-Project/src/views/Slicecage/slicecage.vue
+++ b/UI-Project/src/views/Slicecage/slicecage.vue
@@ -18,6 +18,7 @@
 const dialogFormVisiblee = ref(false)
 const dialogFormVisiblef = ref(false)
 const dialogFormVisibles = ref(false)
+const isLoading = ref(true)
 const blindb = ref(false)
 const inkageEntity = ref('#911005');
 const requestEntity = ref('#911005');
@@ -54,6 +55,13 @@
 const subRectsCountsb = ref([]);
 const subRectsCountsc = ref([]);
 const currentRow = reactive({}); // 褰撳墠琛岀殑鏁版嵁 
+const showAlert = ref(false)
+const alertMessage = ref('')
+const alarmData = ref<any>(null)
+const showModal = ref(false)
+const currentAlarm = ref<any>(null)
+const tableDataAlert = ref([])
+const alertText = ref('')
 const currentPage2 = ref(1)
 const globalDate = inject('globalDate');
 const inputValuesa = reactive({});
@@ -86,6 +94,14 @@
 printLayer.value = row.layer
 printGlassId.value = row.glassId
 }
+const selectGong = async () => {
+  try {
+    const response = await request.get('/cacheVerticalGlass/bigStorageCageHistoryTask/queryAllMessage');
+    if (response.code == 200) {
+    }
+  } catch (error) {
+  }
+};
 //     setInterval(() => {  
 //     localStorage.clear(); // 娓呴櫎鎵�鏈塴ocalStorage鏁版嵁  
 // }, 60000);
@@ -497,6 +513,7 @@
   fetchFlow(); 
 };
 const handlexiang = () => {
+  isLoading.value = true;  // 寮�鍚姞杞界姸鎬�
   dialogFormVisiblea.value = true;
   fetchxiang(); 
   currentPage2.value = 1;
@@ -516,6 +533,19 @@
   fetchcagedetails(engineerId, temperingLayoutId); 
   dialogFormVisiblef.value = true;
 };
+// 璀︽姤鍙屽嚮寮圭獥
+const handleDoubleClick = () => {
+  showModal.value = true;
+};
+const getAlertText = (alarmCode) => {
+  const codeMap = {
+    sizeSame: 'hellow.sizeSame',
+    idSame: 'hellow.idSame'
+  };
+  return alarmCode in codeMap 
+    ? t(codeMap[alarmCode]) 
+    : t('hellow.unknownAlert');
+};
 // 閽㈠寲鏌ヨ
 onMounted(async () => {  
   try {  
@@ -532,20 +562,26 @@
 }); 
 // 鐞嗙墖绗间俊鎭�
 const fetchxiang = async () => {
-  try {     
+    isLoading.value = true;
+  try {
     const response = await request.post('/cacheVerticalGlass/bigStorageCage/querybigStorageCageDetail',{
         // deviceId: page,
         filmsId: filmsId.value,
         flowCardId: flowCardId.value,
     })
-    if (response.code === 200) {  
+    // 妯℃嫙鏈�灏忓姞杞芥椂闂�
+    await new Promise(resolve => setTimeout(resolve, 300));
+    if (response.code === 200) {
       ElMessage.success(response.message);
       tableDataa.value = response.data
     } else {  
       ElMessage.warning(response.msg)
     }  
   } catch (error) {
-  } 
+  } finally {
+    isLoading.value = false;
+  }
+
 }
 const fetchxianga = async () => {
   let page = window.localStorage.getItem('pagenumber')
@@ -682,31 +718,81 @@
   }
 }
 // 浠诲姟閲嶇疆
-const handleptask = async() => { 
+// const handleptask = async() => { 
+//   try {
+//     const confirmResult = await ElMessageBox.confirm(  
+//       t('searchOrder.partasks'), 
+//       t('workOrder.prompt'),  
+//       {  
+//         confirmButtonText: t('workOrder.yes'), 
+//         cancelButtonText: t('workOrder.cancel'),
+//         type: 'warning',  
+//       } 
+//     );
+//  if (confirmResult === 'confirm') {
+//   const response = await request.post('/cacheVerticalGlass/bigStorageCage/resetCage')
+//     if (response.code === 200) {
+//       ElMessage.success(response.message);
+//       } else {
+//       ElMessage.error(response.msg);
+//       }  
+//     }  
+//   } catch (error) {
+//   }  
+// }; 
+// 璀︽姤纭
+const handleSure = async (row) => {
   try {
-    const confirmResult = await ElMessageBox.confirm(  
-      t('searchOrder.partasks'), 
-      t('workOrder.prompt'),  
-      {  
-        confirmButtonText: t('workOrder.yes'), 
-        cancelButtonText: t('workOrder.cancel'),
-        type: 'warning',  
-      } 
+    const confirmResult = await ElMessageBox.confirm(
+      t('hellow.clickmakesure'),
+      t('productStock.prompt'),
+      {
+        confirmButtonText: t('productStock.yes'),
+        cancelButtonText: t('productStock.cancel'),
+        type: 'warning',
+      }
     );
- if (confirmResult === 'confirm') {
-  const response = await request.post('/cacheVerticalGlass/bigStorageCage/resetCage')
-    if (response.code === 200) {
-      ElMessage.success(response.message);
+    if (confirmResult === 'confirm') {
+      const response = await request.post('/hollowGlass/productAlarmInfo/updateAlarmInfo', {
+        id: row.id
+      })
+      if (response.code === 200) {
+        showModal.value = false;
+        showAlert.value = false;
+
+        ElMessage.success(response.message);
       } else {
-      ElMessage.error(response.msg);
-      }  
-    }  
+        ElMessage.error(response.msg);
+      }
+    }
   } catch (error) {
-  }  
-}; 
+    console.error('鍙戠敓閿欒:', error);
+  }
+};
 let socket = null;
 const socketUrl = `ws://${WebSocketHost}:${host}/api/cacheVerticalGlass/api/talk/slicecage`;
 const handleMessage = (data) => {
+  // 鎶ヨ淇℃伅
+  if (data.alarmInfo[0] !=null && data.alarmInfo[0].length > 0) {
+    const alert = data.alarmInfo[0]
+    const { id,alarmMessage, ...rest } = alert[0];
+    alertMessage.value = `${alarmMessage}`;
+    alertMessage.value = `${alert[0].alarmMessage}`;
+    // 鍔ㄦ�佺炕璇戦�昏緫锛氭牴鎹產larmCode閫夋嫨缈昏瘧閿�
+    alertText.value = alert[0].alarmCode === 'sizeSame' 
+      ? t('hellow.sizeSame') 
+      : t('hellow.idSame');
+    alarmData.value = data; // 瀛樺偍瀹屾暣鏁版嵁鐢ㄤ簬寮圭獥
+    showAlert.value = true;
+  }
+   const formattedData = data.alarmInfo[0].map(record => ({
+     ...record,
+     formattedCreateTime: formatTimestamp(record.createTime),
+     alarmCode: record.alarmCode,
+     alarmMessage: record.alarmMessage
+   }));
+    tableDataAlert.value = formattedData;
+
   if(data.bigStorageSummary!=null){
     tableDatass.value = data.bigStorageSummary[0]
   }else{
@@ -962,6 +1048,7 @@
   onMounted(() => {
   socket = initializeWebSocket(socketUrl, handleMessage);
   parseAndSetTime();
+  selectGong()
 });
   onUnmounted(() => {
     if (socket) {
@@ -1051,17 +1138,69 @@
   const seconds = String(date.getSeconds()).padStart(2, '0'); // 琛ラ浂锛堝鏋滈渶瑕佹樉绀烘椂闂达級
   return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
 }
+const svg = `
+        <path class="path" d="
+          M 30 15
+          L 28 17
+          M 25.61 25.61
+          A 15 15, 0, 0, 1, 15 30
+          A 15 15, 0, 1, 1, 27.99 7.5
+          L 15 15
+        " style="stroke-width: 4px; fill: rgba(0, 0, 0, 0)"/>
+      `
 onBeforeUnmount(() => {
   closeWebSocket();
 });
 </script>
 <template>
   <div style="height: 600px;">
+    <div v-if="showAlert" class="global-alert-bar" @dblclick="handleDoubleClick">
+    <div class="alert-content">
+      <el-icon><WarnTriangleFilled /></el-icon>
+      <span class="alert-text">
+        {{ alertText }} (id:{{ alertMessage }})
+      </span>
+    </div>
+    <button @click="showAlert = false" class="close-btn">脳</button>
+  </div>
+  <el-dialog
+    v-model="showModal"
+    width="40%"
+    center
+  >
+      <el-table 
+      ref="table"
+      border
+      :data="tableDataAlert" 
+      max-height="calc(500px - 35px)"
+      style="width: 100%;"
+    >
+      <el-table-column prop="formattedCreateTime" align="center" :label="$t('film.createtime')" min-width="100" />
+      <el-table-column 
+       :label="$t('hellow.content')" 
+       align="center" 
+       min-width="220"
+     >
+       <template #default="scope">
+           <span>
+             {{ getAlertText(scope.row.alarmCode) }} 
+             (id:{{ scope.row.alarmMessage }})
+           </span>
+       </template>
+     </el-table-column>
+      <el-table-column fixed="right" :label="$t('film.operate')" align="center" width="100">
+        <template #default="scope">
+          <el-button type="text" plain
+            @click="handleSure(scope.row)">{{ $t('basicData.yes') }}</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+  </el-dialog>
     <el-button style="margin-top: 7px;margin-left: 10px;" id="searchButton" type="primary" @click="handlexiang">{{ $t('searchOrder.cageinformation') }}</el-button>
     <el-button style="margin-top: 7px;margin-left: 10px;" id="searchButton" type="success" @click="handlehistorical">{{ $t('searchOrder.historicaltasks') }}</el-button>
     <el-button style="margin-top: 7px;margin-left: 10px;" id="searchButton" type="warning" @click="handleganghua">{{ $t('searchOrder.temperingqueries') }}</el-button>
     <el-button style="margin-top: 7px;margin-left: 10px;" id="searchButton" type="info" @click="dialogFormVisibles=true;fetchFlows()">{{ $t('searchOrder.searchlayout') }}</el-button>
-    <el-button style="margin-top: 7px;margin-left: 10px;" id="searchButton" type="danger" @click="handleptask()">{{ $t('searchOrder.partask') }}</el-button>
+    <!-- <el-button style="margin-top: 7px;margin-left: 10px;" id="searchButton" type="danger" @click="handleptask()">{{ $t('searchOrder.partask') }}</el-button> -->
     <el-switch style="margin-top: 7px;margin-left: 10px;" v-model="ganghua" class="mb-2" :inactive-text="$t('searchOrder.temperedswitch')" @change="handleChange" />
     <el-switch style="margin-top: 7px;margin-left: 10px;" v-model="diaodu" class="mb-2" :inactive-text="$t('searchOrder.Schedulingswitch')" @change="handlediaodu" />
     <div id="dotClass">
@@ -1272,7 +1411,9 @@
         </el-table>
       </div>
   </el-dialog>
-<el-dialog v-model="dialogFormVisiblea" top="2vh" width="95%" :title="$t('searchOrder.cageinformation')">
+  <el-dialog v-model="dialogFormVisiblea" top="2vh" width="95%" 
+  :title="$t('searchOrder.cageinformation')">
+  <div v-loading="isLoading" class="loading-container" :element-loading-text="$t('searchOrder.loadingText')" >
   <div style="display: flex;">
     <el-input v-model="flowCardId" clearable style="margin-left: 10px;margin-bottom: 10px;width: 240px;" :placeholder="$t('searchOrder.incardnumber')" />
     <el-input v-model="filmsId" clearable style="margin-left: 10px;margin-bottom: 10px;width: 240px;" :placeholder="$t('film.infilms')"/>
@@ -1374,6 +1515,7 @@
           @current-change="handlePageChange2"
         />
     </div> -->
+  </div>
   </div>
   </el-dialog>
 <!-- 鍘嗗彶浠诲姟 -->
@@ -1702,7 +1844,7 @@
 .img-dlpl{
   margin-left: 20px;
   margin-top: 0px;
-  background-image:url('../../assets/ganghuaqian.png');
+  background-image:url('/ganghuaqian.png');
   background-repeat: no-repeat;
   background-attachment: local;
   min-height: 380px;
@@ -1714,7 +1856,7 @@
 }
 .img-car1{
   display: flex;
-  background-image:url('../../assets/xiaoche.png');
+  background-image:url('/xiaoche.png');
   position: absolute;
   background-repeat: no-repeat;
   background-attachment: local;
@@ -1727,7 +1869,7 @@
 }
 .img-car4{
   display: flex;
-  background-image:url('../../assets/xiaoche.png');
+  background-image:url('/xiaoche.png');
   position: absolute;
   background-repeat: no-repeat;
   background-attachment: local;
@@ -1757,4 +1899,53 @@
 .row-red-background {
   background-color: #CDAF95 !important;
 }
+.global-alert-bar {
+  position: fixed;
+  top: 0;
+  left: 50%; /* 姘村钩灞呬腑鍏抽敭 */
+  transform: translateX(-50%); /* 姘村钩灞呬腑鍏抽敭 */
+  padding: 12px 20px;
+  background-color: #dbdbd7;
+  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
+  display: flex;
+  justify-content: space-between;
+  align-items: center;
+  z-index: 9999;
+  max-width: 80%; /* 闃叉灏忓睆骞曟孩鍑� */
+  min-width: 400px; /* 鏈�灏忓搴︿繚璇� */
+}
+/* 鎻愮ず鍐呭灞呬腑 */
+.alert-content {
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  flex-grow: 1; /* 鍗犳嵁鍙敤绌洪棿 */
+}
+/* 鎻愮ず鏂囧瓧鏍峰紡 */
+.alert-text {
+  margin-left: 8px;
+  text-align: center;
+  font-weight: bold;
+  color: #0d0d0d;
+}
+/* 鍏抽棴鎸夐挳鏍峰紡 */
+.close-btn {
+  background: none;
+  border: none;
+  font-size: 1.5rem;
+  cursor: pointer;
+  margin-left: 20px;
+}
+/* 椤甸潰瀹瑰櫒椤堕儴鍐呰竟璺� */
+#app-container {
+  padding-top: 60px; /* 鏍规嵁alert楂樺害璋冩暣 */
+}
+.loading-container {
+  position: relative;
+  height: 100%;
+}
+/* 纭繚閬僵灞傚湪鏈�椤跺眰 */
+.el-loading-mask {
+  z-index: 2000 !important;
+}
 </style>
\ No newline at end of file

--
Gitblit v1.8.0