From ceed2940c085a05378c5d01e08e82a98a17f317b Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期一, 23 九月 2024 09:27:57 +0800 Subject: [PATCH] 统计分析、统计图表、对比分析、设备日利用率、设备日利用率对比、利用率走势分析以及利用率分段分析左侧树数据新增参数key,用来过滤异常状态设备 --- 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