zhengyiming
9 天以前 650a84730f4418ebbcdc58bbadd4d56f5dd3c8fd
src/views/DictionaryManage/components/AddOrEditDictionaryDialog.vue
@@ -1,6 +1,6 @@
<template>
  <ProDialog
    :title="`${title}类别`"
    :title="form.title"
    v-model="visible"
    @close="onDialogClose"
    destroy-on-close
@@ -17,6 +17,7 @@
          v-model="form.field1"
          :value-enum="dictionaryDataList"
          enum-value-key="code"
          :convertEnumValue="false"
        />
      </ProFormItemV2>
      <ProFormItemV2 label="名称:" prop="content" :check-rules="[{ message: '请输入名称' }]">
@@ -34,13 +35,17 @@
          :max="999999"
        ></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 === CategoryCode.Welfare">
      <ProFormItemV2
        label="图片:"
        prop="field2"
        v-if="category?.data?.code === CategoryCode.Welfare"
      >
        <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 +85,7 @@
});
type Form = {
  title?: string;
  id?: string;
  categoryId: string;
  content: string;
@@ -93,29 +99,15 @@
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;