From 4df7d3001a0e94d3bdedd7be016a99fd18b66150 Mon Sep 17 00:00:00 2001
From: buhuazhen <hua100783@gmail.com>
Date: 星期一, 23 三月 2026 17:36:22 +0800
Subject: [PATCH] feat(productionProcess): 在表单中添加工序编号字段

---
 src/views/productionManagement/productionProcess/Edit.vue |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/src/views/productionManagement/productionProcess/Edit.vue b/src/views/productionManagement/productionProcess/Edit.vue
index a7903f2..2eef090 100644
--- a/src/views/productionManagement/productionProcess/Edit.vue
+++ b/src/views/productionManagement/productionProcess/Edit.vue
@@ -8,6 +8,21 @@
     >
       <el-form label-width="140px" :model="formState" label-position="top" ref="formRef">
         <el-form-item
+            label="宸ュ簭缂栧彿锛�"
+            prop="no"
+            :rules="[
+                {
+                required: true,
+                message: '璇疯緭鍏ュ伐搴忕紪鍙�',
+              },
+              {
+                max: 100,
+                message: '鏈�澶�100涓瓧绗�',
+              }
+            ]">
+          <el-input v-model="formState.no" placeholder="璇疯緭鍏ュ伐搴忓悕绉�" />
+        </el-form-item>
+        <el-form-item
             label="宸ュ簭鍚嶇О锛�"
             prop="name"
             :rules="[

--
Gitblit v1.9.3