useDrawer.vue 3.74 KB
<template>
  <div>
    <BasicDrawer
      v-bind="$attrs"
      @register="registerDrawer"
      showFooter
      :title="getTitle"
      width="700px"
      @ok="handleSubmit"
    >
      <BasicForm @register="registerForm" />
      <CpnsTenantSet ref="getChildData" :parentData="parentSetData" />
    </BasicDrawer>
  </div>
</template>
<script lang="ts">
  import { defineComponent, ref, computed, unref, getCurrentInstance, reactive } from 'vue';
  import { BasicForm, useForm } from '/@/components/Form';
  import { formSchema } from './config';
  import { BasicDrawer, useDrawerInner } from '/@/components/Drawer';
  import CpnsTenantSet from './cpns/index.vue';
  import { saveTenantProfileApi } from '/@/api/tenant/tenantApi';
  import { useMessage } from '/@/hooks/web/useMessage';

  export default defineComponent({
    name: 'ConfigDrawer',
    components: { BasicDrawer, BasicForm, CpnsTenantSet },
    emits: ['success', 'register'],
    setup(_, { emit }) {
      const { createMessage } = useMessage();
      const isUpdate = ref(true);
      let postAllData: any = reactive({});
      const parentSetData: any = ref(null);
      let getValuesFormData: any = reactive({});
      const { proxy } = getCurrentInstance();
      const getChildData = ref(null);
      const editGetId: any = ref('');
      const [registerForm, { validateFields, getFieldsValue, resetFields, setFieldsValue }] =
        useForm({
          schemas: formSchema,
          showActionButtonGroup: false,
        });
      const [registerDrawer, { setDrawerProps, closeDrawer }] = useDrawerInner(async (data) => {
        //清除表单值
        proxy.$refs.getChildData.funcResetFields();
        await resetFields();
        setDrawerProps({ confirmLoading: false });
        isUpdate.value = !!data?.isUpdate;
        //编辑
        if (unref(isUpdate)) {
          parentSetData.value = { ...data.record.profileData.configuration };
          proxy.$refs.getChildData.setFieldsValueFunc(parentSetData.value);
          editGetId.value = data.record.id;
          await setFieldsValue({
            ...data.record,
          });
        }
      });
      const getTitle = computed(() => (!unref(isUpdate) ? '新增租户配置' : '编辑租户配置'));

      async function handleSubmit() {
        if (!unref(isUpdate)) {
          let res = validateFields();
          if (!res) return;
          getValuesFormData = getFieldsValue();
          let getChildValues = proxy.$refs.getChildData.getAllFields();
          let profileData1 = {
            configuration: getChildValues,
          };
          Object.assign(
            postAllData,
            {
              profileData: profileData1,
            },
            getValuesFormData
          );
          await saveTenantProfileApi(postAllData);
          createMessage.success('租户配置新增成功');
          closeDrawer();
          emit('success');
          resetFields();
        }
        if (unref(isUpdate)) {
          let res = validateFields();
          if (!res) return;
          getValuesFormData = getFieldsValue();
          getValuesFormData.id = editGetId.value;
          let getChildValues = proxy.$refs.getChildData.getAllFields();
          let profileData1 = {
            configuration: getChildValues,
          };
          Object.assign(
            postAllData,
            {
              profileData: profileData1,
            },
            getValuesFormData
          );
          await saveTenantProfileApi(postAllData);
          createMessage.success('租户配置编辑成功');
          closeDrawer();
          emit('success');
        }
      }
      return {
        parentSetData,
        getChildData,
        registerDrawer,
        registerForm,
        getTitle,
        handleSubmit,
      };
    },
  });
</script>