From 12ef895481038a7bec06a2c6cb47748a6353e848 Mon Sep 17 00:00:00 2001
From: loulijun2021 <1694218219@qq.com>
Date: 星期四, 11 五月 2023 17:35:04 +0800
Subject: [PATCH] 1.生产进度报表提交

---
 src/views/zzmx/jpgj.vue |   82 +++++++++++++++++++++++++++-------------
 1 files changed, 55 insertions(+), 27 deletions(-)

diff --git a/src/views/zzmx/jpgj.vue b/src/views/zzmx/jpgj.vue
index 21bd725..fc1bd8c 100644
--- a/src/views/zzmx/jpgj.vue
+++ b/src/views/zzmx/jpgj.vue
@@ -16,7 +16,7 @@
           style="display: flex;justify-content: space-between"
         >
           <div class="elForm">
-            <el-form-item label-width="70px" label="浜у搧鍚嶇О" style=" display: flex;">
+            <el-form-item label="浜у搧鍚嶇О/缂栫爜" style=" display: flex;">
               <el-select
                 v-model="form.partcode"
                 filterable
@@ -30,7 +30,7 @@
                 <el-option
                   v-for="item in partArr"
                   :key="item.partcode"
-                  :label="item.partname"
+                  :label="item.partname+' / ' + item.partcode"
                   :value="item.partcode"
                 />
               </el-select>
@@ -124,14 +124,15 @@
           />
           <el-table-column
             prop="partcode"
-            min-width="160"
+            min-width="120"
             label="浜у搧缂栫爜"
             sortable="custom"
           />
           <el-table-column
             prop="partname"
             label="浜у搧鍚嶇О"
-            min-width="160"
+            min-width="200"
+            show-tooltip-when-overflow
             sortable="custom"
           />
           <el-table-column
@@ -256,14 +257,13 @@
               style="width: 220px"
               placeholder="璇烽�夋嫨"
               :popper-append-to-body="false"
-
               @change="partDialogChange"
             >
               <!--              @focus="getPartSelect2"-->
               <el-option
                 v-for="item in partArr2"
                 :key="item.partcode"
-                :label="item.partname"
+                :label="item.partname + ' / '+ item.partcode"
                 :value="item.partcode"
               />
             </el-select>
@@ -305,11 +305,13 @@
         <div>
           <i class="el-icon-s-operation" style="color:#42b983;margin: -20px 10px 20px 0" />宸ュ簭闆嗗悎
         </div>
-        <div style="display: flex;background-color: #F2F6FC;padding:20px 0  20px 20px; min-height: 100px">
+
+        <div style="display: flex;background-color: #F2F6FC;padding:10px; min-height: 100px">
           <el-radio-group v-model="dialogForm.stepcode" @change="radioChange">
             <el-radio
-              v-for="item in stepDialogArr"
+              v-for="(item,index) in stepDialogArr"
               :key="item.code"
+              :style="{marginLeft:index%7===0?0:'10px',marginBottom:'10px'}"
               :label="item.name"
               border
             />
@@ -328,14 +330,15 @@
           class="tableFixed"
           :data="eqpDialogArr"
           :height="tableHeight"
-          :style="{width: 100+'%',height:tableHeight-50+'px',}"
+          :style="{width: 100+'%',height:tableHeight-50+'px'}"
           border
           :row-class-name="tableRowClassName"
-          highlight-current-row
           :header-cell-style="this.$headerCellStyle"
           :cell-style="this.$cellStyle"
+          highlight-current-row
           @sort-change="dialogSortChange"
         >
+          <!--          @row-click="rowClick"-->
           <el-table-column
             width="50"
             label="搴忓彿"
@@ -533,6 +536,7 @@
         partcode: '',
         routecode: '',
         stepcode: '',
+        steptype: '',
         page: 1,
         rows: 10,
         prop: 'eqpcode',
@@ -545,6 +549,7 @@
       editStepName: '', // 缂栬緫鏃跺姞宸ュ伐搴忓悕绉�
       operation: '',
       dialogFormRules: {},
+      radioChangeTempValue: '',
 
       title_value: '鏁版嵁瀵煎叆 / 鑺傛媿宸ヤ环',
       code: '24',
@@ -614,17 +619,20 @@
       this.form.routecode = ''
       this.form.stepcode = ''
       this.form.eqpcode = ''
+      this.search()
     },
     async routeChange(val) {
       const { data: res } = await RouteSelectStep({ routecode: val })
       this.stepArr = res
       this.form.stepcode = ''
       this.form.eqpcode = ''
+      this.search()
     },
     async stepChange(val) {
       const { data: res } = await StepSelectEqp({ stepcode: val })
       this.eqpArr = res
       this.form.eqpcode = ''
+      this.search()
     },
     // 閲嶇疆
     reset() {
@@ -639,15 +647,18 @@
       this.routeDialogArr = res
       this.stepDialogArr = []
       this.eqpDialogArr = []
+      this.dialogForm.routecode = ''
     },
     async routeDialogChange(val) {
       const { data: res } = await RouteSelectStep({ routecode: val })
       this.stepDialogArr = res
       this.eqpDialogArr = []
+      this.radioChangeTempValue = ''
     },
     radioChange(val) {
       this.isEqpTableEdit = true
 
+      this.radioChangeTempValue = val
       // this.dialogForm.stepcode = this.stepDialogArr.find(item => item.name === val).code
       this.getEqpTable(val)
     },
@@ -665,15 +676,19 @@
     },
     async getEqpTable(val) {
       if (typeof val === 'string') {
+        this.eqpTable.steptype = this.stepDialogArr.find(item => item.name === val).flag
         this.eqpTable.partcode = this.dialogForm.partcode
         this.eqpTable.routecode = this.dialogForm.routecode
         this.eqpTable.stepcode = this.stepDialogArr.find(item => item.name === val).code
-      } else if (typeof val === 'number') {
+        // } else if (typeof val === 'number') {
+      } else {
+        this.eqpTable.steptype = this.stepDialogArr[0].flag
         this.eqpTable.partcode = this.dialogForm.partcode
         this.eqpTable.routecode = this.dialogForm.routecode
         this.eqpTable.stepcode = this.stepDialogArr[0].code
         this.dialogForm.stepcode = this.stepDialogArr[0].name
       }
+
       const res = await StepSelectEqpList(this.eqpTable)
       this.eqpDialogArr = res.data
       this.eqpTableLength = res.count
@@ -685,6 +700,9 @@
     },
     // 淇濆瓨琛�
     async saveRow(row) {
+      if (parseFloat(row.unprice) <= 0 && this.eqpTable.steptype !== 'W') {
+        return this.$message.info('璁′欢鍗曚环蹇呴』澶т簬闆讹紒')
+      }
       const data = {
         partcode: this.eqpTable.partcode, //  浜у搧缂栫爜
         routecode: this.eqpTable.routecode, //  宸ヨ壓璺嚎缂栫爜
@@ -702,12 +720,14 @@
       if (res.code === '200') {
         this.isEqpTableEdit = true
         this.$message.success('淇濆瓨鎴愬姛锛�')
-        await this.getEqpTable()
+        this.radioChange(this.radioChangeTempValue)
       }
     },
     // 鍙栨秷琛�
     cancelRow(row) {
       this.getEqpTable()
+      this.radioChange(this.radioChangeTempValue)
+      this.dialogForm.stepcode = this.radioChangeTempValue
       this.isEqpTableEdit = true
     },
     // 缂栬緫琛�
@@ -727,8 +747,13 @@
         return this.$message.info('鍙兘涓�琛屼竴琛屼慨鏀癸紒')
       }
     },
+    // rowClick(row, column, event) {
+    //   console.log(row, column, event, 3)
+    //   console.log(this.dialogForm.stepcode, 4)
+    //   this.getEqpTable(this.dialogForm.stepcode)
+    // },
     // 澶嶅埗琛�
-    async  copyRow(row) {
+    async copyRow(row) {
       let currentData = {}// 褰撳墠琛屽璞�
       let nextData = {}// 涓嬩竴琛屽璞�
       if (row.RowNum === this.eqpDialogArr.length) {
@@ -756,7 +781,7 @@
       const res = await SaveBeatRate(newData)
       if (res.code === '200') {
         this.$message.success('澶嶅埗鎴愬姛锛�')
-        await this.getEqpTable()
+        this.radioChange(this.radioChangeTempValue)
         this.isEqpTableEdit = true
       }
     },
@@ -783,7 +808,7 @@
       this.getPartSelect2()
     },
     // 淇敼鎸夐挳
-    async  edit(operation, row) {
+    async edit(operation, row) {
       this.operation = operation
       this.dialogVisible = true
 
@@ -791,13 +816,11 @@
       this.editRouteName = row.route_name
       this.editStepName = row.stepname
 
-      // this.$nextTick(() => {
+      await this.partDialogChange(row.partcode)
+      await this.routeDialogChange(row.route_code)
       this.dialogForm.partcode = row.partcode
       this.dialogForm.routecode = row.route_code
       this.dialogForm.stepcode = row.stepcode
-      // })
-      await this.partDialogChange(row.partcode)
-      await this.routeDialogChange(row.route_code)
       await this.radioChange(0)
     },
     // 鍒犻櫎鎸夐挳
@@ -897,15 +920,17 @@
 <!--鍏叡椤甸潰鏍峰紡-->
 <style lang="scss" scoped>
 $main_color: #42b983;
-.el-button--text{
+.el-button--text {
   font-size: 14px;
   cursor: pointer;
 }
-.el-icon-share ,.el-icon-delete,.el-icon-edit-outline{
+
+.el-icon-share, .el-icon-delete, .el-icon-edit-outline {
   color: $main_color;
   cursor: pointer;
 }
-.el-icon-edit-outline{
+
+.el-icon-edit-outline {
   margin-right: 15px;
 }
 
@@ -966,8 +991,8 @@
   background-color: #f8f8fa;
 }
 
-::v-deep .el-table__body .el-table__row.hover-row td{
-  background-color: #eaecef ;
+::v-deep .el-table__body .el-table__row.hover-row td {
+  background-color: #eaecef;
 }
 
 ::v-deep .el-form--inline .el-form-item__label {
@@ -983,14 +1008,17 @@
 .body ::v-deep .el-form-item {
   margin-bottom: 0;
 }
+
 .userDialogVisible ::v-deep .el-form-item {
   margin-bottom: 0;
 }
-.tableFixed{
-  ::v-deep .el-table__fixed-right{
+
+.tableFixed {
+  ::v-deep .el-table__fixed-right {
     height: 100% !important;
   }
-  ::v-deep .el-table__fixed{
+
+  ::v-deep .el-table__fixed {
     height: 100% !important;
   }
 }

--
Gitblit v1.9.3