From 95faeea7f46a9d8f4817c8950c697835a463ec1b Mon Sep 17 00:00:00 2001
From: loulijun2021 <1694218219@qq.com>
Date: 星期六, 31 十二月 2022 14:52:44 +0800
Subject: [PATCH] 1.项目页签图标替换

---
 src/views/scgl/gdplgb.vue |  134 +++++++++++++++++++++++++++++++-------------
 1 files changed, 94 insertions(+), 40 deletions(-)

diff --git a/src/views/scgl/gdplgb.vue b/src/views/scgl/gdplgb.vue
index 4b6b910..092c495 100644
--- a/src/views/scgl/gdplgb.vue
+++ b/src/views/scgl/gdplgb.vue
@@ -2,23 +2,20 @@
   <div>
     <div class="body" :style="{height:mainHeight+'px'}">
       <div class="bodyTopButtonGroup" style="justify-content: space-between">
-        <!--        <el-button type="primary" icon="el-icon-circle-plus-outline" @click="add('add')">鏂板</el-button>-->
-        <!--        <el-button icon="el-icon-download" @click="upload">瀵煎叆</el-button>-->
         <el-button icon="el-icon-switch-button" @click="handleClose('close')">鎵归噺鍏冲崟</el-button>
         <el-button icon="el-icon-switch-button" @click="handleClose('noClose')">鎵归噺鍙嶅叧鍗�</el-button>
-
       </div>
 
       <div class="bodyTopFormGroup">
         <el-form
           ref="form"
           :model="form"
-          label-width="80px"
+          label-width="100px"
           inline
           style="display: flex;justify-content: space-between"
         >
           <div class="elForm">
-            <el-form-item label="宸ュ崟鐘舵��" style=" display: flex;">
+            <el-form-item label="宸ュ崟鐘舵��" label-width="70px" style=" display: flex;">
               <el-input v-model="form.mesorderstus" placeholder="璇疯緭鍏�" style="width: 200px" />
             </el-form-item>
             <el-form-item label="宸ュ崟缂栧彿" style=" display: flex;">
@@ -37,37 +34,55 @@
                 />
               </el-select>
             </el-form-item>
-            <el-form-item label="浜у搧缂栫爜" style=" display: flex;">
+            <el-form-item v-show="isExpandForm" label-width="70px" label="浜у搧缂栫爜" style=" display: flex;">
               <el-input v-model="form.partcode" style="width: 200px" placeholder="璇疯緭鍏�" />
             </el-form-item>
-            <el-form-item label="浜у搧鍚嶇О" style=" display: flex;">
+            <el-form-item v-show="isExpandForm" label="浜у搧鍚嶇О" style=" display: flex;">
               <el-input v-model="form.partname" style="width: 200px" placeholder="璇疯緭鍏�" />
             </el-form-item>
-            <el-form-item label="浜у搧瑙勬牸" style=" display: flex;">
+            <el-form-item v-show="isExpandForm" label="浜у搧瑙勬牸" style=" display: flex;">
               <el-input v-model="form.partspec" style="width: 200px" placeholder="璇疯緭鍏�" />
             </el-form-item>
-            <el-form-item label="鍒涘缓浜哄憳" style=" display: flex;">
+            <el-form-item v-show="isExpandForm" label="鍒涘缓浜哄憳" style=" display: flex;">
               <el-input v-model="form.creatuser" style="width: 200px" placeholder="璇疯緭鍏�" />
             </el-form-item>
-            <el-form-item label="鍒涘缓鏃堕棿" style=" display: flex;">
+            <el-form-item v-show="isExpandForm" label-width="70px" label="鍒涘缓鏃堕棿" style=" display: flex;">
               <el-input v-model="form.createdate" style="width: 200px" placeholder="璇疯緭鍏�" />
             </el-form-item>
           </div>
-          <div style="display: flex;align-items: start;margin-top: 5px;z-index: 2">
+          <div class="bodySearchReset" :style="{marginLeft:$store.state.app.sidebar.opened?'5%':'10%'}">
             <el-button type="primary" icon="el-icon-search" @click="search">鏌ヨ</el-button>
             <el-button type="info" icon="el-icon-refresh" @click="reset">閲嶇疆</el-button>
           </div>
         </el-form>
+        <div
+          class="bodyTopFormExpand"
+        >
+          <svg-icon
+            v-show="mouseHoverType==='mouseout'"
+            style="cursor: pointer"
+            :icon-class="!isExpandForm?'doubleDown3':'doubleUp3'"
+            @mouseenter="mouseHoverType=$event.type"
+          />
+          <svg-icon
+            v-show="mouseHoverType==='mouseenter'"
+            style="cursor: pointer"
+            :icon-class="!isExpandForm?'doubleDown':'doubleUp'"
+            @click="isExpandForm=!isExpandForm"
+            @mouseout="mouseHoverType=$event.type"
+          />
+        </div>
       </div>
 
       <div class="elTableDiv">
         <el-table
           ref="multipleTable"
+          class="tableFixed"
           :data="tableData"
-          :height="tableHeight+'px'"
+          :height="isExpandForm?tableHeight:(tableHeight+80)+'px'"
           border
           :row-class-name="tableRowClassName"
-          :style="{width: 100+'%',height:tableHeight+'px',}"
+          :style="{width: 100+'%',height:isExpandForm?tableHeight:(tableHeight+80)+'px',}"
           highlight-current-row
           :header-cell-style="this.$headerCellStyle"
           :cell-style="this.$cellStyle"
@@ -99,6 +114,7 @@
             fixed
           />
           <el-table-column
+            show-tooltip-when-overflow
             prop="status"
             label="璁㈠崟鐘舵��"
             sortable="custom"
@@ -115,6 +131,7 @@
           </el-table-column>
           <el-table-column
             prop="wo_code"
+            show-tooltip-when-overflow
             label="宸ュ崟缂栧彿"
             sortable="custom"
             min-width="160"
@@ -122,12 +139,14 @@
           <el-table-column
             prop="m_po"
             label="婧愬崟鍗曞彿"
+            show-tooltip-when-overflow
             sortable="custom"
             min-width="160"
           />
           <el-table-column
             prop="wotype"
             label="鍗曟嵁绫诲瀷"
+            show-tooltip-when-overflow
             sortable="custom"
             min-width="120"
           >
@@ -141,18 +160,21 @@
             prop="partcode"
             label="浜у搧缂栫爜"
             sortable="custom"
+            show-tooltip-when-overflow
             min-width="120"
           />
           <el-table-column
             prop="partname"
             min-width="150"
             label="浜у搧鍚嶇О"
+            show-tooltip-when-overflow
             sortable="custom"
           />
           <el-table-column
             prop="partspec"
             label="浜у搧瑙勬牸"
             sortable="custom"
+            show-tooltip-when-overflow
             width="110"
           >
             <template slot-scope="{row}">
@@ -164,28 +186,33 @@
             prop="plan_qty"
             label="浠诲姟鏁伴噺"
             sortable="custom"
+            show-tooltip-when-overflow
             width="110"
           />
           <el-table-column
             prop="good_qty"
             label="鍚堟牸鏁伴噺"
+            show-tooltip-when-overflow
             sortable="custom"
             width="110"
           />
           <el-table-column
             prop="ng_qty"
             label="涓嶈壇鏁伴噺"
+            show-tooltip-when-overflow
             sortable="custom"
             width="110"
           />
           <el-table-column
             prop="bad_qty"
             label="鎶ュ簾鏁伴噺"
+            show-tooltip-when-overflow
             sortable="custom"
             width="110"
           />
           <el-table-column
             prop="wkshp_name"
+            show-tooltip-when-overflow
             label="鐢熶骇杞﹂棿"
             sortable="custom"
             width="120"
@@ -220,6 +247,7 @@
           <el-table-column
             prop="plan_startdate"
             label="璁″垝寮�濮嬫椂闂�"
+            show-tooltip-when-overflow
             sortable="custom"
             width="160"
           >
@@ -233,6 +261,7 @@
             label="璁″垝缁撴潫鏃堕棿"
             sortable="custom"
             width="160"
+            show-tooltip-when-overflow
           >
             <template slot-scope="{row}">
               <div v-if="row.plan_enddate">{{ row.plan_enddate }}</div>
@@ -243,6 +272,7 @@
             prop="piroque"
             label="宸ュ崟绛夌骇"
             sortable="custom"
+            show-tooltip-when-overflow
             width="120"
           >
             <template slot-scope="{row}">
@@ -255,11 +285,13 @@
           <el-table-column
             prop="lm_user"
             label="鍒涘缓浜哄憳"
+            show-tooltip-when-overflow
             sortable="custom"
             width="120"
           />
           <el-table-column
             prop="lm_date"
+            show-tooltip-when-overflow
             label="鍒涘缓鏃堕棿"
             width="160"
             sortable="custom"
@@ -326,6 +358,8 @@
   },
   data() {
     return {
+      mouseHoverType: 'mouseout',
+      isExpandForm: false,
       mainHeight: 0,
       tableHeight: 0,
       form: {
@@ -428,40 +462,50 @@
             data.push({ wo_code: item.wo_code })
           }
         })
-        this.$confirm('鏄惁纭鎵归噺鍏冲崟?', '鎻愮ず', {
-          confirmButtonText: '纭畾',
-          cancelButtonText: '鍙栨秷',
-          type: 'warning'
-        }).then(() => {
-          MesOrderBitchClosedSeave({ dt: data }).then(res => {
-            if (res.code === '200') {
-              this.$message.success('鎵归噺鍏冲崟鎴愬姛锛�')
-              this.$refs.multipleTable.clearSelection()
-            }
+        if (data.length > 0) {
+          this.$confirm('鏄惁纭鎵归噺鍏冲崟?', '鎻愮ず', {
+            confirmButtonText: '纭畾',
+            cancelButtonText: '鍙栨秷',
+            type: 'warning'
+          }).then(() => {
+            MesOrderBitchClosedSeave(data).then(res => {
+              if (res.code === '200') {
+                this.$message.success('鎵归噺鍏冲崟鎴愬姛锛�')
+                this.$refs.multipleTable.clearSelection()
+                this.getMesOrderBitchClosedSearch()
+              }
+            })
+          }).catch(() => {
+            this.$message.info('宸插彇娑堟壒閲忓叧鍗曪紒')
           })
-        }).catch(() => {
-          this.$message.info('宸插彇娑堟壒閲忓叧鍗曪紒')
-        })
+        } else if (data.length === 0) {
+          this.$message.info('鏃犵鍚堝彲鍏抽棴鐨勫伐鍗曪紒')
+        }
       } else if (val === 'noClose') {
         this.multipleSelection.forEach(item => {
           if (item.status === 'CLOSED') {
             data.push({ wo_code: item.wo_code })
           }
         })
-        this.$confirm('鏄惁纭鎵归噺鍙嶅叧鍗�?', '鎻愮ず', {
-          confirmButtonText: '纭畾',
-          cancelButtonText: '鍙栨秷',
-          type: 'warning'
-        }).then(() => {
-          MesOrderBitchAntiClosedSeave({ dt: data }).then(res => {
-            if (res.code === '200') {
-              this.$message.success('鎵归噺鍙嶅叧鍗曟垚鍔燂紒')
-              this.$refs.multipleTable.clearSelection()
-            }
+        if (data.length > 0) {
+          this.$confirm('鏄惁纭鎵归噺鍙嶅叧鍗�?', '鎻愮ず', {
+            confirmButtonText: '纭畾',
+            cancelButtonText: '鍙栨秷',
+            type: 'warning'
+          }).then(() => {
+            MesOrderBitchAntiClosedSeave(data).then(res => {
+              if (res.code === '200') {
+                this.$message.success('鎵归噺鍙嶅叧鍗曟垚鍔燂紒')
+                this.$refs.multipleTable.clearSelection()
+                this.getMesOrderBitchClosedSearch()
+              }
+            })
+          }).catch(() => {
+            this.$message.info('宸插彇娑堟壒閲忓弽鍏冲崟锛�')
           })
-        }).catch(() => {
-          this.$message.info('宸插彇娑堟壒閲忓弽鍏冲崟锛�')
-        })
+        } else if (data.length === 0) {
+          this.$message.info('鏃犵鍚堝彲鍙嶅叧闂殑宸ュ崟锛�')
+        }
       }
     },
 
@@ -469,7 +513,8 @@
     getHeight() {
       this.$nextTick(() => {
         this.mainHeight = window.innerHeight - 85
-        this.tableHeight = this.mainHeight - 240
+        this.tableHeight = this.mainHeight - 295
+        this.$refs.multipleTable.doLayout()
       })
     },
     tableRowClassName({ row, rowIndex }) {
@@ -580,6 +625,15 @@
   align-items: center;
   justify-content: center;
 }
+
+.tableFixed{
+  ::v-deep .el-table__fixed-right{
+    height: 100% !important;
+  }
+  ::v-deep .el-table__fixed{
+    height: 100% !important;
+  }
+}
 </style>
 <style>
 

--
Gitblit v1.9.3