From 1739cb5e190319b79be43c9fcfa0945cd3320d5e Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期五, 28 三月 2025 17:36:49 +0800
Subject: [PATCH] 下单页面-缓存清空再提交

---
 src/views/business/materialOrder/copperOrder.vue |   60 +++++++++++++++++++++++++-----------------------------------
 1 files changed, 25 insertions(+), 35 deletions(-)

diff --git a/src/views/business/materialOrder/copperOrder.vue b/src/views/business/materialOrder/copperOrder.vue
index 442fcad..e15e00f 100644
--- a/src/views/business/materialOrder/copperOrder.vue
+++ b/src/views/business/materialOrder/copperOrder.vue
@@ -439,15 +439,16 @@
         custom: null,
         company: null,
         userId: null,
+        companyId: '',
         type: '0', // 绱ф�ョ▼搴�
         code: null,
         remark: null, // 澶囨敞
         mating: 0,
         sample: null, // 鏍峰搧鍚嶇О
         appointed: '', // 绾﹀畾鏃堕棿
-        buyUnitMeas: '', // 鍗曚綅
-        updateBatchNo: '', // 鎵规鍙�
-        partDetail: '', // 瑙勬牸鍨嬪彿
+        buyUnitMeas: null, // 鍗曚綅
+        updateBatchNo: null, // 鎵规鍙�
+        partDetail: null, // 瑙勬牸鍨嬪彿
         declareDate: '', // 鍒拌揣鏃堕棿
         factory: null,
         laboratory: null,
@@ -460,8 +461,8 @@
         processing: 1,
         isLeave: 0,
         orderType: '杩涘巶妫�楠�', // 妫�楠岀被鍨�
-        supplierName: '', // 鏉愭枡鍘傚
-        qtyArrived: '', // 鍒拌揣鏁伴噺
+        supplierName: null, // 鏉愭枡鍘傚
+        qtyArrived: null, // 鍒拌揣鏁伴噺
       },
       sample: {
         sampleCode: null,
@@ -555,7 +556,7 @@
           { required: true, message: '璇峰~鍐欒鏍煎瀷鍙�', trigger: 'blur' }
         ],
         declareDate: [
-          { required: true, message: '璇峰~鍐欏埌璐ф椂闂�', trigger: 'blur' }
+          { required: true, message: '璇峰~鍐欏埌璐ф椂闂�', trigger: 'change' }
         ]
       },
       noNeedCheckDia: false,
@@ -583,23 +584,6 @@
         }
       }
     },
-    productListSelected: {
-      deep: true,
-      handler(val) {
-        if(val.length>0){
-          for(let i =0 ; i< val.length; i++){
-            if(val[i].inspectionItem.includes('鏉惧绠�')){
-              this.inspectionItemST = 1
-              break;
-            }else{
-              this.inspectionItemST = 0
-            }
-          }
-        }else{
-          this.inspectionItemST = 0
-        }
-      }
-    },
     sampleList: {
       deep: true,
       handler(val) {
@@ -621,6 +605,12 @@
     this.getInfoRow();
   },
   activated() {
+    this.$refs.addObj.resetFields()
+    this.addObj.createTime = ''
+    this.addObj.id = ''
+    this.addObj.updateTime = ''
+    this.sampleList = []
+    this.productList = []
     this.active = this.$route.query.active
     this.currentId = this.$route.query.currentId
     this.getInfoRow();
@@ -747,10 +737,10 @@
           this.addObj = {
             ...res.data.insOrder
           }
-          this.addObj.qtyArrived = res.data.insOrderTemplate.qtyArrived
-          this.addObj.buyUnitMeas = res.data.insOrderTemplate.buyUnitMeas
-          this.addObj.updateBatchNo = res.data.insOrderTemplate.updateBatchNo
-          this.addObj.supplierName = res.data.insOrderTemplate.supplierName
+          this.$set(this.addObj, 'qtyArrived', res.data.insOrderTemplate.qtyArrived)
+          this.$set(this.addObj, 'buyUnitMeas', res.data.insOrderTemplate.buyUnitMeas)
+          this.$set(this.addObj, 'updateBatchNo', res.data.insOrderTemplate.updateBatchNo)
+          this.$set(this.addObj, 'supplierName', res.data.insOrderTemplate.supplierName)
           this.addObj.type = String(this.addObj.type)
           this.sampleList = this.HaveJson(res.data.sampleProduct);
           this.getProNum()
@@ -1188,9 +1178,9 @@
         this.addObj.code = selects.code
         this.addObj.phone = selects.phone
         this.addObj.companyId = selects.departId
-        if(this.active==1){
-          this.selectInsOrderTemplateInfo()
-        }
+        // if(this.active==1){
+        //   this.selectInsOrderTemplateInfo()
+        // }
       })
     },
     getProNum() {
@@ -1465,11 +1455,11 @@
       }
       return 'warning-row';
     },
-    selectInsOrderTemplateInfo() {
-      selectInsOrderTemplate({company: this.addObj.company}).then(res => {
-        this.templates = res.data
-      })
-    },
+    // selectInsOrderTemplateInfo() {
+    //   selectInsOrderTemplate({company: this.addObj.company}).then(res => {
+    //     this.templates = res.data
+    //   })
+    // },
     methodChange(val, row) {
       if (val === null || val === '') return
       if (this.sampleList.length > 1) {

--
Gitblit v1.9.3