From 9d5d3cacf6e5f70dca3f461123ee9a9466c96c79 Mon Sep 17 00:00:00 2001
From: 李喆(开发组) <lzhe@yxqiche.com>
Date: 星期一, 11 八月 2025 16:34:27 +0800
Subject: [PATCH] 1

---
 src/views/flowmgr/taskassign.vue |   62 ++++++++++++++++++++-----------
 1 files changed, 40 insertions(+), 22 deletions(-)

diff --git a/src/views/flowmgr/taskassign.vue b/src/views/flowmgr/taskassign.vue
index d06a24d..04797ed 100644
--- a/src/views/flowmgr/taskassign.vue
+++ b/src/views/flowmgr/taskassign.vue
@@ -2,7 +2,7 @@
  * @Author: 鏉庡枂(寮�鍙戠粍) lzhe@yxqiche.com
  * @Date: 2025-05-28 12:03:55
  * @LastEditors: gaoshp
- * @LastEditTime: 2025-08-02 21:58:47
+ * @LastEditTime: 2025-08-10 13:05:56
  * @FilePath: /mdmweb/src/views/flowmgr/taskassign.vue
  * @Description: 杩欐槸榛樿璁剧疆,璇疯缃甡customMade`, 鎵撳紑koroFileHeader鏌ョ湅閰嶇疆 杩涜璁剧疆: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
 -->
@@ -14,6 +14,19 @@
 
 <script>
 export default {
+  watch: {
+    'attachForm.drawingNo': function (val) {
+      if(val && this.attachForm.processNo) {
+        this.attachForm.title = `${val}-${this.attachForm.processNo}-鏁版帶绋嬪簭缂栧埗`;
+      }
+    },
+    'attachForm.processNo': function (val) {
+      if(val && this.attachForm.drawingNo) {
+        //this.attachForm.title = `${val}-${this.attachForm.processNo}-鏁版帶绋嬪簭缂栧埗`;
+		this.attachForm.title = `${this.attachForm.drawingNo}-${val}-鏁版帶绋嬪簭缂栧埗`;
+      }
+    },
+  },
   data() {
     var that = this;
     return {
@@ -25,7 +38,7 @@
         emptyBtn: false,
         tip: false,
         column: [
-		{
+          {
             label: '娴佺▼鏍囬',
             prop: 'title',
             type: 'input',
@@ -69,10 +82,9 @@
             prop: 'processNo',
             type: 'input',
             span: 12,
-            type: 'number',
             step: 1,
             precision: 0,
-            dataType: 'number',
+            dataType: 'string',
             max: 999,
             rules: [{ required: true, message: '蹇呭~', trigger: 'blur' }],
           },
@@ -98,7 +110,7 @@
             type: 'input',
             span: 12,
             dataType: 'string',
-			maxlength: 2,
+            maxlength: 2,
             rules: [{ required: true, message: '蹇呭~', trigger: 'blur' }],
           },
           {
@@ -106,7 +118,7 @@
             prop: 'machineCode',
             type: 'select',
             dicUrl: `/blade-mdm/machine/page`,
-            dicFormatter: function(res) {
+            dicFormatter: function (res) {
               that.machineCodeList = res.data.records;
               return res.data.records;
             },
@@ -135,36 +147,44 @@
             dataType: 'string',
             rules: [{ required: true, message: '蹇呭~', trigger: 'blur' }],
           },
+          {
+            label: '鍋忕鍗曞彿',
+            prop: 'deviation',
+            type: 'input',
+            span: 12,
+            dataType: 'string',
+            // rules: [{ required: true, message: '蹇呭~', trigger: 'blur' }],
+          },
         ],
       },
       attachForm: {},
     };
   },
   methods: {
-    formSubmit(form,done) {
-      var form = {...form};
-      this.machineCodeList.forEach(item=> {
-        if(form.machineCode == item.code) {
+    formSubmit(form, done) {
+      var form = { ...form };
+      this.machineCodeList.forEach(item => {
+        if (form.machineCode == item.code) {
           form.machineMode = item.name;
         }
       })
-      
+
       axios({
         url: '/blade-mdm/flow/dispatch/start',
         method: 'post',
         data: form,
       }).then(
         res => {
-            this.$message({
-              type: 'success',
-              message: '鎿嶄綔鎴愬姛!',
-            });
-            this.$refs.form.resetForm();
-            done();
+          this.$message({
+            type: 'success',
+            message: '鎿嶄綔鎴愬姛!',
+          });
+          this.$refs.form.resetForm();
+          done();
         },
         error => {
-            window.console.log(error);
-            done();
+          window.console.log(error);
+          done();
         }
       );
     }
@@ -172,6 +192,4 @@
 };
 </script>
 
-<style lang="scss">
-
-</style>
+<style lang="scss"></style>

--
Gitblit v1.9.3