From a9f005e2af294c47d7cd1e4b6ed401bf65f5b080 Mon Sep 17 00:00:00 2001 From: zhangherong <571457620@qq.com> Date: 星期二, 04 三月 2025 16:44:09 +0800 Subject: [PATCH] art: 所有设备 台账 二保工单 根据设备id查询二保工单,并过滤掉已完成和已取消的二保工单 --- src/views/eam/modules/malfunctionRepair/AcceptModel.vue | 21 +++++++++++++++++++-- 1 files changed, 19 insertions(+), 2 deletions(-) diff --git a/src/views/eam/modules/malfunctionRepair/AcceptModel.vue b/src/views/eam/modules/malfunctionRepair/AcceptModel.vue index e9674f0..d392958 100644 --- a/src/views/eam/modules/malfunctionRepair/AcceptModel.vue +++ b/src/views/eam/modules/malfunctionRepair/AcceptModel.vue @@ -27,9 +27,23 @@ </a-input> </a-form-model-item> </a-col> + <!-- 楠屾敹鎰忚涓�1锛氬悓鎰� 锛�2锛氶┏浼� --> <a-col :span="24"> <a-form-model-item label="楠屾敹鎰忚" + :labelCol="labelCol" + :wrapperCol="wrapperCol" + prop="errUda4" + > + <a-radio-group v-model="model.errUda4"> + <a-radio value="1">鍚屾剰</a-radio> + <a-radio value="2">椹冲洖</a-radio> + </a-radio-group> + </a-form-model-item> + </a-col> + <a-col :span="24"> + <a-form-model-item + label="鎰忚" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="errUda5" @@ -37,7 +51,7 @@ <a-textarea v-model="model.errUda5" rows="4" - placeholder="楠屾敹鎰忚" + placeholder="鎰忚" /> </a-form-model-item> </a-col> @@ -92,13 +106,16 @@ confirmLoading: false, validatorRules: { errUda5: [ - { required: true, message: "璇疯緭鍏ラ獙鏀舵剰瑙�" }, + { required: true, message: "璇疯緭鍏ユ剰瑙�" }, { min: 0, max: 100, message: '闀垮害涓嶈秴杩� 100 涓瓧绗�' }, ], errUda3: [ { required: true, message: "璇疯緭鍏ュ悕绉�" }, { min: 0, max: 10, message: '鍚嶇О涓嶈秴杩� 10 涓瓧绗�' }, ], + errUda4: [ + { required: true, message: "璇烽�夋嫨楠屾敹鎰忚" }, + ], }, url: { accept: "/eam/equipmentReportRepair/accept", -- Gitblit v1.9.3