From 43acb69d86d1ae11457b68be924bfc8e89545242 Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期日, 04 一月 2026 14:34:43 +0800
Subject: [PATCH] feat(productionProcess): 添加工资定额字段

---
 src/views/productionManagement/productionProcess/index.vue |    4 ++++
 src/views/productionManagement/productionProcess/Edit.vue  |    4 ++++
 src/views/productionManagement/productionProcess/New.vue   |    4 ++++
 3 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/src/views/productionManagement/productionProcess/Edit.vue b/src/views/productionManagement/productionProcess/Edit.vue
index df691cb..31e3109 100644
--- a/src/views/productionManagement/productionProcess/Edit.vue
+++ b/src/views/productionManagement/productionProcess/Edit.vue
@@ -22,6 +22,9 @@
             ]">
           <el-input v-model="formState.name" />
         </el-form-item>
+        <el-form-item label="宸ヨ祫瀹氶" prop="salaryQuota">
+          <el-input v-model="formState.salaryQuota" type="number" :step="0.001" />
+        </el-form-item>
         <el-form-item label="澶囨敞" prop="remark">
           <el-input v-model="formState.remark" type="textarea" />
         </el-form-item>
@@ -59,6 +62,7 @@
   id: props.record.id,
   name: props.record.name,
   remark: props.record.remark,
+  salaryQuota: props.record.salaryQuota,
 });
 
 const isShow = computed({
diff --git a/src/views/productionManagement/productionProcess/New.vue b/src/views/productionManagement/productionProcess/New.vue
index 0a3f858..a73a755 100644
--- a/src/views/productionManagement/productionProcess/New.vue
+++ b/src/views/productionManagement/productionProcess/New.vue
@@ -22,6 +22,9 @@
             ]">
           <el-input v-model="formState.name" />
         </el-form-item>
+        <el-form-item label="宸ヨ祫瀹氶" prop="salaryQuota">
+          <el-input v-model="formState.salaryQuota" type="number" :step="0.001" />
+        </el-form-item>
         <el-form-item label="澶囨敞" prop="remark">
           <el-input v-model="formState.remark" type="textarea" />
         </el-form-item>
@@ -53,6 +56,7 @@
 const formState = ref({
   name: '',
   remark: '',
+  salaryQuota:  '',
 });
 
 const isShow = computed({
diff --git a/src/views/productionManagement/productionProcess/index.vue b/src/views/productionManagement/productionProcess/index.vue
index 46c3c06..d2624ea 100644
--- a/src/views/productionManagement/productionProcess/index.vue
+++ b/src/views/productionManagement/productionProcess/index.vue
@@ -72,6 +72,10 @@
 		prop: "no",
 	},
 	{
+		label: "宸ヨ祫瀹氶",
+		prop: "salaryQuota",
+	},
+	{
 		label: "澶囨敞",
 		prop: "remark",
 	},

--
Gitblit v1.9.3