From 29fb29f3541a044d3b44c580d725fd8c188421b9 Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期一, 11 八月 2025 13:59:00 +0800
Subject: [PATCH] 任务派工,工序号改为普通文本

---
 src/views/flowmgr/taskassign.vue |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/views/flowmgr/taskassign.vue b/src/views/flowmgr/taskassign.vue
index e89b0ce..04797ed 100644
--- a/src/views/flowmgr/taskassign.vue
+++ b/src/views/flowmgr/taskassign.vue
@@ -22,7 +22,8 @@
     },
     'attachForm.processNo': function (val) {
       if(val && this.attachForm.drawingNo) {
-        this.attachForm.title = `${val}-${this.attachForm.processNo}-鏁版帶绋嬪簭缂栧埗`;
+        //this.attachForm.title = `${val}-${this.attachForm.processNo}-鏁版帶绋嬪簭缂栧埗`;
+		this.attachForm.title = `${this.attachForm.drawingNo}-${val}-鏁版帶绋嬪簭缂栧埗`;
       }
     },
   },
@@ -81,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' }],
           },

--
Gitblit v1.9.3