From c05b81c7f50df80ab247a05f9f92af2d799e77cd Mon Sep 17 00:00:00 2001
From: liding <756868258@qq.com>
Date: 星期五, 10 四月 2026 15:59:04 +0800
Subject: [PATCH] feat:1.销售添加是否生产 2.生产订单添加备注
---
src/views/productionManagement/productionOrder/New.vue | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/src/views/productionManagement/productionOrder/New.vue b/src/views/productionManagement/productionOrder/New.vue
index 83682fc..fd84f2b 100644
--- a/src/views/productionManagement/productionOrder/New.vue
+++ b/src/views/productionManagement/productionOrder/New.vue
@@ -90,6 +90,12 @@
<el-input-number v-model="formState.quantity" :step="1" :min="1" style="width: 100%" />
</el-form-item>
+ <el-form-item
+ label="澶囨敞"
+ prop="remark"
+ >
+ <el-input v-model="formState.remark" placeholder="澶囨敞" />
+ </el-form-item>
</el-form>
<!-- 浜у搧閫夋嫨寮圭獥 -->
@@ -140,6 +146,7 @@
priority: undefined,
quantity: 0,
batchNo: "",
+ remark: "",
});
const isShow = computed({
@@ -173,6 +180,7 @@
priority: priority_type.value && priority_type.value.length > 0 ? priority_type.value[2].value : undefined,
quantity: '',
batchNo: "",
+ remark: "",
};
isShow.value = false;
};
--
Gitblit v1.9.3