From 0177daf2022ff2b760e8cd00df8bba105f96db81 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期三, 28 二月 2024 09:29:12 +0800
Subject: [PATCH] 销售订单&原材料检验

---
 src/views/quality/rawMaterial/index.vue |   70 +++++++++++++++++++++++++++++++++--
 1 files changed, 66 insertions(+), 4 deletions(-)

diff --git a/src/views/quality/rawMaterial/index.vue b/src/views/quality/rawMaterial/index.vue
index cad0189..fc085ef 100644
--- a/src/views/quality/rawMaterial/index.vue
+++ b/src/views/quality/rawMaterial/index.vue
@@ -54,7 +54,7 @@
 </template>
 <script>
 import ttable from '@/views/common/ztt-table.vue'
-import { getRawInspectList,delObj,exportRawMaterial,getObj,downloadReport } from '@/api/quality/rawMaterial'
+import { getRawInspectList,delObj,exportRawMaterial,getObj,downloadReport,checkPutIFS } from '@/api/quality/rawMaterial'
 import RawMaterialForm from './rawMaterial-form'
 import * as fecha from 'element-ui/lib/utils/date'
 import { mapGetters } from 'vuex'
@@ -112,6 +112,18 @@
                         searchInfoType: 'select',
                         optList: () => {
                             return this.typeList
+                        }
+                    },
+                    {
+                        minWidth: '120',
+                        prop: 'checkState',
+                        label: '瀹℃牳鐘舵��',
+                        isTrue: true,
+                        isSearch: true,
+                        searchInfoType: 'select',
+                        formatter: this.checkStateFormat,
+                        optList: () => {
+                            return this.checkStateList
                         }
                     },
                     {
@@ -237,6 +249,7 @@
             insStateList: [{label:'鍏ㄩ儴',value:''},{label:'宸叉娴�',value:'1'},{label:'鏈娴�',value:'0'}],
             StateList: [{label:'鍏ㄩ儴',value:''},{label:'宸插悎鏍�',value:'1'},{label:'涓嶅悎鏍�',value:'0'}],
             typeList: [{label:'鍏ㄩ儴',value:''},{label:'棣栨',value:'棣栨'},{label:'杩旀',value:'杩旀'}],
+            checkStateList: [{label:'鏈鏍�',value:'0'},{label:'瀹℃牳閫氳繃',value:'1'},{label:'瀹℃牳涓嶉�氳繃',value:'2'}],
         }
     },
     components: {
@@ -262,13 +275,28 @@
 
             })
         }
+        this.table.operator = [{
+            text: '瀹℃牳',
+            type: 'text',
+            size: 'small',
+            fun: this.examineHandle,
+            showFun: (row)=>{return row.type==='棣栨'},
+            show: {
+                key: 'checkState',
+                val: ['0']
+            }
+        }]
         if(this.permissions.quality_rawMaterial_del){
-            this.table.operator = [{
+            this.table.operator.push({
                     text: '浣滃簾',
                     type: 'text',
                     size: 'small',
-                    fun: this.deleteHandle
-                }]
+                    fun: this.deleteHandle,
+                    show: {
+                        key: 'judgeState',
+                        val: ['',null]
+                    }
+                })
         }
      },
     computed: {
@@ -282,6 +310,32 @@
         }
     },
     methods:{
+        examineHandle(val){
+            this.$confirm('鏄惁瀹℃牳閫氳繃璇ユ楠岄」?', '鎻愮ず', {
+                distinguishCancelAndClose: true,
+                confirmButtonText: '閫氳繃',
+                cancelButtonText: '涓嶉�氳繃',
+                type: 'warning'
+            }).then(() => {
+                checkPutIFS(val.id,{result: 1}).then(res=>{
+                    if(res.status===200){
+                        console.log(res)
+                    }
+                }).catch(error=>{
+                    console.error(error)
+                })
+            }).catch((action) => {
+                if(action === 'cancel'){
+                    checkPutIFS(val.id,{result: 2}).then(res=>{
+                        if(res.status===200){
+                            console.log(res)
+                        }
+                    }).catch(error=>{
+                        console.error(error)
+                    })
+                }
+            });
+        },
         downloadReport(){
             let selection = this.multipleSelection
             if(!selection || selection.length < 1){
@@ -420,6 +474,14 @@
                 return "<span style='color:#34BD66;'>鍚堟牸</span>"
             }
         },
+        checkStateFormat(row, column, cellValue){
+            this.checkStateList.forEach((obj) => {
+                if (obj.value === cellValue) {
+                    cellValue = obj.label
+                }
+            })
+            return cellValue
+        },
         formatDateTime(row, column, cellValue) {
             return cellValue ? fecha.format(new Date(cellValue), 'yyyy-MM-dd') : ''
         },

--
Gitblit v1.9.3