From 1f1f6b2f9c8b3614cc8c182b8c4a204cda0e0a9b Mon Sep 17 00:00:00 2001
From: licp <lichunping@guanfang.com.cn>
Date: 星期三, 29 五月 2024 15:15:39 +0800
Subject: [PATCH] 完成人员管理、角色管理优化,完成检验任务光纤配置

---
 src/components/do/b1-inspect-order-plan/Inspection.vue |  148 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 147 insertions(+), 1 deletions(-)

diff --git a/src/components/do/b1-inspect-order-plan/Inspection.vue b/src/components/do/b1-inspect-order-plan/Inspection.vue
index b776a4f..391167a 100644
--- a/src/components/do/b1-inspect-order-plan/Inspection.vue
+++ b/src/components/do/b1-inspect-order-plan/Inspection.vue
@@ -175,6 +175,9 @@
     <el-row class="title">
       <el-col :span="12" style="padding-left: 20px;">妫�楠屽崟璇︽儏</el-col>
       <el-col :span="12" style="text-align: right;">
+        <el-button size="small" type="primary" @click="fiberOpticVisible=true" v-if="fiberOptic.length>0">鍏夌氦鍒囨崲</el-button>
+        <el-button size="small" type="primary" @click="fiberOpticTapeVisible=true" v-if="fiberOpticTape.length>0">鍏夌氦甯﹀垏鎹�</el-button>
+        <el-button size="small" type="primary" @click="bushingVisible=true" v-if="bushing.length>0">濂楃鍒囨崲</el-button>
         <el-button size="small" type="primary" @click="sampleVisible=true">鏍峰搧鍒囨崲</el-button>
         <el-button size="small" type="primary" @click="taskVisible=true">浠诲姟鍒囨崲</el-button>
         <el-button size="small" type="primary" @click="addVerifyDia = true" v-show="state==1"
@@ -290,6 +293,43 @@
         </table>
       </div>
     </div>
+    <el-drawer title="鍏夌氦鍒囨崲" :visible.sync="fiberOpticVisible" :size="500">
+      <el-table class="el-table" ref="fiberOpticTable" :data="fiberOptic" height="100%" tooltip-effect="dark" border
+        highlight-current-row @row-click="handleChangeOptic" :row-class-name="tableRowClassName"
+        :current-row-key="currentKey" :row-key="record=>record.index" v-if="fiberOpticVisible">
+        <el-table-column type="index" align="center" label="搴忓彿" width="70px" :key="Math.random()">
+        </el-table-column>
+        <el-table-column prop="bushColor" label="绠″鑹叉爣" min-width="100px" show-overflow-tooltip></el-table-column>
+        <el-table-column prop="color" label="鍏夌氦鑹叉爣" min-width="100px" show-overflow-tooltip></el-table-column>
+        <el-table-column prop="model" label="鍏夌氦瑙勬牸" min-width="130px" show-overflow-tooltip
+         ></el-table-column>
+        <el-table-column prop="standard" label="鍙傝�冩爣鍑�" width="100px" show-overflow-tooltip></el-table-column>
+      </el-table>
+    </el-drawer>
+    <el-drawer title="鍏夌氦甯﹀垏鎹�" :visible.sync="fiberOpticTapeVisible" :size="500">
+      <el-table class="el-table" ref="fiberOpticTapeTable" :data="fiberOpticTape" height="100%" tooltip-effect="dark" border
+        highlight-current-row @row-click="handleChangeTape" :row-class-name="tableRowClassName"
+        :current-row-key="currentKey" :row-key="record=>record.index" v-if="fiberOpticTapeVisible">
+        <el-table-column type="index" align="center" label="搴忓彿" width="70px" :key="Math.random()">
+        </el-table-column>
+        <el-table-column prop="code" label="鍏夌氦甯︾紪鍙�" min-width="110px" show-overflow-tooltip></el-table-column>
+        <el-table-column prop="model" label="鍏夌氦甯﹁鏍�" min-width="110px" show-overflow-tooltip></el-table-column>
+        <el-table-column prop="standard" label="鍙傝�冩爣鍑�" width="90px" show-overflow-tooltip></el-table-column>
+        <el-table-column prop="num" label="鍏夌氦妫�娴嬮噺" min-width="110px" show-overflow-tooltip
+          ></el-table-column>
+      </el-table>
+    </el-drawer>
+    <el-drawer title="濂楃鍒囨崲" :visible.sync="bushingVisible" :size="500">
+      <el-table class="el-table" ref="bushingTable" :data="bushing" height="100%" tooltip-effect="dark" border
+        highlight-current-row @row-click="handleChangeBushing" :row-class-name="tableRowClassName"
+        :current-row-key="currentKey" :row-key="record=>record.index" v-if="bushingVisible">
+        <el-table-column type="index" align="center" label="搴忓彿" width="70px" :key="Math.random()">
+        </el-table-column>
+        <el-table-column prop="color" label="绠¤壊鏍�" min-width="110px" show-overflow-tooltip></el-table-column>
+        <el-table-column prop="num2" label="鏍囬噺" min-width="110px" show-overflow-tooltip></el-table-column>
+        <el-table-column prop="num3" label="娴嬭瘯閲�" min-width="90px" show-overflow-tooltip></el-table-column>
+      </el-table>
+    </el-drawer>
     <el-drawer title="鏍峰搧鍒囨崲" :visible.sync="sampleVisible" :size="500">
       <el-table class="el-table" ref="productTable" :data="sampleProduct" height="100%" tooltip-effect="dark" border
         highlight-current-row @row-click="handleChangeSample" :row-class-name="tableRowClassName"
@@ -423,7 +463,16 @@
         addVerifyDia: false,
         verifyUser: null,
         personList: [],
-        enumList: []
+        enumList: [],
+        fiberOpticVisible:false,
+        fiberOpticTapeVisible:false,
+        bushingVisible:false,
+        fiberOpticTape:[],//鍏夌氦甯﹀垪琛�
+        fiberOptic:[],//鍏夌氦鍒楄〃
+        bushing:[],//濂楃鍒楄〃
+        currentFiberOpticTape:null,//褰撳墠鍏夌氦甯�
+        currentFiberOptic:null,//褰撳墠鍏夌氦
+        currentBushing:null,//褰撳墠濂楃
       }
     },
     created() {
@@ -469,6 +518,14 @@
           this.getTableLists();
           this.componentData.currentId = val;
           this.currentKey = 1;
+
+          // 娓呯┖鍏夌氦閰嶇疆鐩稿叧鏁版嵁
+          this.fiberOpticTape = []
+          this.currentFiberOpticTape = null;
+          this.fiberOptic = []
+          this.currentFiberOptic = null;
+          this.bushing = []
+          this.currentBushing = null;
         })
       },
       currentTable(val1, val0) {
@@ -484,9 +541,71 @@
       }
     },
     methods: {
+      handleChangeBushing(row, column, event){
+        this.currentBushing = row;
+        this.fiberOpticTape = []
+        this.currentFiberOpticTape = null;
+        this.fiberOptic = []
+        this.currentFiberOptic = null;
+        if(row.fiber&&row.fiber.length>0){
+          // 鐩存帴閰嶇疆鍏夌氦
+          this.fiberOptic = row.fiber;
+        }else if(row.fibers&&row.fibers.length>0){
+          // 閰嶇疆鍏夌氦甯﹀悗锛屽啀閰嶇疆鍏夌氦
+          this.fiberOpticTape = row.fibers;
+        }
+        this.bushingVisible = false;
+      },
+      handleChangeOptic(row, column, event){
+        this.currentFiberOptic = row;
+        this.currentFiberOptic.productList.forEach(a => {
+          this.param[a.id] = {
+            insValue: [],
+            comValue: [],
+            resValue: null,
+            equipValue: [],
+            equipName: [],
+            insResult: null
+          }
+        })
+        this.getTableLists0(row)
+        this.fiberOpticVisible = false;
+        this.currentKey = row.index
+      },
+      handleChangeTape(row, column, event){
+        this.currentFiberOpticTape = row;
+        this.param = {}
+        this.fiberOptic = []
+        this.currentFiberOptic = null;
+        this.currentFiberOpticTape.productList.forEach(a => {
+          this.param[a.id] = {
+            insValue: [],
+            comValue: [],
+            resValue: null,
+            equipValue: [],
+            equipName: [],
+            insResult: null
+          }
+        })
+        this.getTableLists0(row)
+        if(row.fiber&&row.fiber.length>0){
+          // 閰嶇疆鍏夌氦
+          this.fiberOptic = row.fiber;
+        }
+        this.fiberOpticTapeVisible = false;
+        this.currentKey = row.index
+      },
       handleChangeSample(row, column, event) {
         this.currentSample = row;
         this.param = {}
+        // 娓呯┖鍏夌氦閰嶇疆鐩稿叧鏁版嵁
+        this.fiberOpticTape = []
+        this.currentFiberOpticTape = null;
+        this.fiberOptic = []
+        this.currentFiberOptic = null;
+        this.bushing = []
+        this.currentBushing = null;
+
         this.currentSample.insProduct.forEach(a => {
           this.param[a.id] = {
             insValue: [],
@@ -497,6 +616,10 @@
             insResult: null
           }
         })
+        let bushing = this.currentSample.insProduct.bushing
+        if(bushing&&bushing.length>0){
+          this.bushing = bushing
+        }
         // this.handleTableData()
         this.getTableLists();
         this.sampleVisible = false;
@@ -590,6 +713,29 @@
           this.handleTableData()
         }
       },
+      // 鍏夌氦閰嶇疆鐩稿叧妯℃澘table鍒楄〃
+      getTableLists0(obj){
+        const mySet1 = new Set();
+        this.tableLists = obj.productList.filter(m => {
+          let num0 = mySet1.size;
+          if (m.templateId != null&&m.template != null) {
+            mySet1.add(JSON.stringify({
+              template: m.template,
+              templateId: m.templateId
+            }))
+          }
+          let num1 = mySet1.size;
+          if (num1 > num0) {
+            return m
+          }
+        });
+        if (this.tableLists && this.tableLists.length > 0) {
+          this.tableList = null;
+          this.tableList = [this.tableLists[0]]
+          this.currentTable = this.tableLists[0].templateId;
+          this.handleTableData()
+        }
+      },
       handleTableData() {
         this.excelMethodList = []
         this.widthList = this.tableList[0].style.columnlen;

--
Gitblit v1.9.3