From e5e905bdefce0e71caa9431be185ed7695885a10 Mon Sep 17 00:00:00 2001
From: zhoushihao <zsh19950802@163.com>
Date: 星期四, 19 十二月 2024 11:37:44 +0800
Subject: [PATCH] 1、大理片笼新增破损汇报接口 2、fixbug:解决膜系不显示问题 3、中空缺片详情接口改造 4、中空界面显示更改 5、fixbug:大理片笼计数不显示

---
 UI-Project/src/views/hollow/hollowequipment.vue |   25 ++++++++++++++++---------
 1 files changed, 16 insertions(+), 9 deletions(-)

diff --git a/UI-Project/src/views/hollow/hollowequipment.vue b/UI-Project/src/views/hollow/hollowequipment.vue
index 9756ed2..24392bd 100644
--- a/UI-Project/src/views/hollow/hollowequipment.vue
+++ b/UI-Project/src/views/hollow/hollowequipment.vue
@@ -42,15 +42,21 @@
         </el-form>
       </div>
       <div style="width: 98%; height: calc(100% - 35px); overflow-y: auto;">
-    <el-table height="650" ref="table" :data="tableDataa" :header-cell-style="{ background: '#F2F3F5', color: '#1D2129' }">
-      <el-table-column prop="flowCardId" :label="$t('hellow.flowCardId')" align="center"/>
-      <el-table-column prop="hollowSequence" :label="$t('hellow.order')" align="center"/>
-      <el-table-column prop="thickness" :label="$t('hellow.thickness')" align="center"/>
-      <el-table-column prop="layer" :label="$t('hellow.coatingtypes')" align="center"/>
-      <el-table-column prop="height" :label="$t('hellow.height')" align="center"/>
-      <el-table-column prop="width" :label="$t('hellow.width')" align="center"/>
-      <el-table-column prop="state" :label="$t('hellow.state')" align="center"/>
-    </el-table>
+        <el-table height="650" ref="table" :data="tableDataa"
+                  :header-cell-style="{ background: '#F2F3F5', color: '#1D2129' }">
+          <el-table-column prop="flowCardId" :label="$t('hellow.flowCardId')" align="center"/>
+          <el-table-column prop="hollowSequence" :label="$t('hellow.order')" align="center"/>
+          <el-table-column prop="thickness" :label="$t('hellow.thickness')" align="center"/>
+          <el-table-column prop="layer" :label="$t('hellow.layer')" align="center"/>
+          <el-table-column prop="filmsId" :label="$t('hellow.coatingtypes')" align="center"/>
+          <el-table-column prop="height" :label="$t('hellow.height')" align="center"/>
+          <el-table-column prop="width" :label="$t('hellow.width')" align="center"/>
+          <el-table-column prop="state" :label="$t('hellow.state')" align="center">
+            <template #default="scope">
+              {{ scope.row.state == -1 ? "绛夊緟鍑虹墖" : "鍑虹墖瀹屾垚" }}
+            </template>
+          </el-table-column>
+        </el-table>
       <div style="display: flex;margin-left: 40%;margin-top: 10px;">
       <div style="margin-top: 5px;margin-right: 5px;">{{ $t('hellow.line') }}</div>
     <el-pagination
@@ -84,6 +90,7 @@
       <el-table-column prop="sumCount" align="center" :label="$t('hellow.totalnumber')" min-width="80"/>
       <el-table-column prop="realCount" align="center" :label="$t('hellow.realpieces')" min-width="80"/>
       <el-table-column prop="pairCount" align="center" :label="$t('hellow.pairsnumber')" min-width="80"/>
+      <el-table-column prop="damageCount" align="center" :label="$t('hellow.damagenumber')" min-width="80"/>
       </el-table>
       </template>
     </el-table-column>

--
Gitblit v1.8.0