From d885af635aa994083891031ca47ef124ec81a267 Mon Sep 17 00:00:00 2001 From: xyc <jc_xiong@hotmail.com> Date: 星期三, 23 十月 2024 11:13:53 +0800 Subject: [PATCH] 可靠性仿真评估时后端增加可修设备可修阶段可靠度固定为1的控制 --- web/packages/views/modules/sys/dict-data-add-or-update.vue | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/web/packages/views/modules/sys/dict-data-add-or-update.vue b/web/packages/views/modules/sys/dict-data-add-or-update.vue index 8f027d8..3447465 100644 --- a/web/packages/views/modules/sys/dict-data-add-or-update.vue +++ b/web/packages/views/modules/sys/dict-data-add-or-update.vue @@ -7,6 +7,9 @@ <zt-form-item prop="dictLabel" :label="$t('dict.dictLabel')" rules="required"> <el-input v-model="dataForm.dictLabel" :placeholder="$t('dict.dictLabel')"></el-input> </zt-form-item> + <zt-form-item prop="dictCode" :label="$t('dict.dictCode')" rules="required"> + <el-input v-model="dataForm.dictCode" :placeholder="$t('dict.dictCode')"></el-input> + </zt-form-item> <zt-form-item prop="dictValue" label="瀛楀吀鍊�" rules="required"> <el-input v-model="dataForm.dictValue" placeholder="瀛楀吀鍊�"></el-input> </zt-form-item> @@ -41,6 +44,7 @@ dictLabel: '', dictValue: '', sort: 0, + dictCode:'', remark: '' } } -- Gitblit v1.9.1