From d7c8a3a9e1fc5c8e596a17cdadb7079d20e52297 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期四, 21 八月 2025 15:12:02 +0800 Subject: [PATCH] fix: 签约 --- src/views/DictionaryManage/components/AddOrEditDictionaryDialog.vue | 47 +++++++++++++++++++++++++---------------------- 1 files changed, 25 insertions(+), 22 deletions(-) diff --git a/src/views/DictionaryManage/components/AddOrEditDictionaryDialog.vue b/src/views/DictionaryManage/components/AddOrEditDictionaryDialog.vue index 9784ece..52032b2 100644 --- a/src/views/DictionaryManage/components/AddOrEditDictionaryDialog.vue +++ b/src/views/DictionaryManage/components/AddOrEditDictionaryDialog.vue @@ -1,22 +1,23 @@ <template> <ProDialog - :title="`${title}绫诲埆`" + :title="form.title" v-model="visible" @close="onDialogClose" destroy-on-close draggable > - <ProForm :model="form" ref="dialogForm" label-width="90px"> + <ProForm :model="form" ref="dialogForm" label-width="120px"> <ProFormItemV2 label="琛屼笟绫诲瀷:" prop="field1" - v-if="category?.data?.code === '30'" + v-if="category?.data?.code === CategoryCode.Position" :check-rules="[{ message: '璇烽�夋嫨琛屼笟绫诲瀷' }]" > <ProFormSelect v-model="form.field1" :value-enum="dictionaryDataList" enum-value-key="code" + :convertEnumValue="false" /> </ProFormItemV2> <ProFormItemV2 label="鍚嶇О:" prop="content" :check-rules="[{ message: '璇疯緭鍏ュ悕绉�' }]"> @@ -32,15 +33,29 @@ :controls="false" :min="0" :max="999999" + :value-on-clear="0" ></ProFormInputNumber> </ProFormItemV2> - <ProFormItemV2 label="缂栧彿:" prop="code"> - <ProFormText v-model.trim="form.code"></ProFormText> + <ProFormItemV2 label="缂栧彿:" prop="code" :check-rules="[{ message: '璇疯緭鍏ョ紪鍙�' }]"> + <ProFormText v-model.trim="form.code" :disabled="!!form.id"></ProFormText> </ProFormItemV2> - <ProFormItemV2 label="鍥剧墖:" prop="src" v-if="category?.data?.code === '50'"> + <ProFormItemV2 + label="鍙傛暟瀛楁鍚�:" + prop="field3" + :check-rules="[{ message: '璇疯緭鍏ュ弬鏁板瓧娈靛悕' }]" + v-if="category?.data?.code === CategoryCode.ElectronSignParam" + > + <ProFormText v-model.trim="form.field3"></ProFormText> + </ProFormItemV2> + <ProFormItemV2 + label="鍥剧墖:" + prop="field2" + v-if="category?.data?.code === CategoryCode.Welfare" + :check-rules="[{ type: 'upload', message: '璇蜂笂浼犲浘鐗�' }]" + > <ProFormImageUpload v-model:file-url="form.field2" :limitFileCount="1"></ProFormImageUpload> </ProFormItemV2> - <ProFormItemV2 label="鐘舵��:" prop="status"> + <ProFormItemV2 label="鐘舵��:" prop="isDisabled" required> <ProFormRadio v-model="form.isDisabled" :value-enum="[ @@ -80,6 +95,7 @@ }); type Form = { + title?: string; id?: string; categoryId: string; content: string; @@ -88,34 +104,21 @@ isDisabled: boolean; field1?: string; field2?: UploadUserFile[]; + field3?: string; }; const form = defineModel<Form>('form'); const visible = defineModel<boolean>('modelValue'); -const title = computed(() => (form.value.id ? '缂栬緫' : '鏂板')); - const { getDictionaryCategoryById } = useGetDictionaryCategorySelect(); -const { dictionaryDataList, refetch, getDictionaryDataNameById } = useDictionaryDataSelect({ +const { dictionaryDataList } = useDictionaryDataSelect({ categoryCode: computed(() => CategoryCode.IndustryCategory), }); const category = computed(() => { return getDictionaryCategoryById(form.value.categoryId); }); - -watch( - () => visible.value, - (value) => { - if (value) { - refetch(); - } - }, - { - immediate: true, - } -); const emit = defineEmits<{ (e: 'onConfirm'): void; -- Gitblit v1.9.1