From 86250792e1a6f04c876c0a6a735cad4b16062b3b Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期五, 22 八月 2025 15:23:30 +0800 Subject: [PATCH] Merge branch 'master' of http://120.26.58.240:8888/r/flexJobAdmin --- src/views/DictionaryManage/components/AddOrEditDictionaryDialog.vue | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/src/views/DictionaryManage/components/AddOrEditDictionaryDialog.vue b/src/views/DictionaryManage/components/AddOrEditDictionaryDialog.vue index e4f873e..52032b2 100644 --- a/src/views/DictionaryManage/components/AddOrEditDictionaryDialog.vue +++ b/src/views/DictionaryManage/components/AddOrEditDictionaryDialog.vue @@ -6,7 +6,7 @@ destroy-on-close draggable > - <ProForm :model="form" ref="dialogForm" label-width="90px"> + <ProForm :model="form" ref="dialogForm" label-width="120px"> <ProFormItemV2 label="琛屼笟绫诲瀷:" prop="field1" @@ -38,6 +38,14 @@ </ProFormItemV2> <ProFormItemV2 label="缂栧彿:" prop="code" :check-rules="[{ message: '璇疯緭鍏ョ紪鍙�' }]"> <ProFormText v-model.trim="form.code" :disabled="!!form.id"></ProFormText> + </ProFormItemV2> + <ProFormItemV2 + label="鍙傛暟瀛楁鍚�:" + prop="field3" + :check-rules="[{ message: '璇疯緭鍏ュ弬鏁板瓧娈靛悕' }]" + v-if="category?.data?.code === CategoryCode.ElectronSignParam" + > + <ProFormText v-model.trim="form.field3"></ProFormText> </ProFormItemV2> <ProFormItemV2 label="鍥剧墖:" @@ -96,6 +104,7 @@ isDisabled: boolean; field1?: string; field2?: UploadUserFile[]; + field3?: string; }; const form = defineModel<Form>('form'); -- Gitblit v1.9.1