AiragLogModal.vue 4.0 KB
<template>
  <BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose :title="title" :width="800" @ok="handleSubmit">
    <BasicForm @register="registerForm" name="AiragLogForm" />
    <template #footer>
      <a-button @click="closeModal">取消</a-button>
      <!-- 根据 showSaveButton 决定显示哪个按钮 -->
      <!-- 根据操作类型显示不同按钮 -->
      <template v-if="operationType === 'question'">
        <a-button @click="handleSubmit" type="primary">存入问题库</a-button>
      </template>

      <template v-else-if="operationType === 'knowledge'">
        <a-button @click="handleSubmit" type="primary">存入知识库</a-button>
      </template>
      <template v-else>
        <a-button @click="handleSubmit">确认</a-button>
      </template>
    </template>
  </BasicModal>
</template>

<script lang="ts" setup>
  import { ref, computed, unref } from 'vue';
  import { BasicModal, useModalInner } from '/@/components/Modal';
  import { BasicForm, useForm } from '/@/components/Form/index';
  import { formSchema } from '../AiragLog.data';
  import { saveOrUpdate } from '../AiragLog.api';
  // 添加操作类型标识
  const operationType = ref<string>('');
  // Emits声明
  const emit = defineEmits(['register', 'success']);
  const isUpdate = ref(true);
  const isDetail = ref(false);
  const showSaveButton = ref(true);
  let customOnConfirm = ref<Function | null>(null);
  //表单配置
  const [registerForm, { setProps, resetFields, setFieldsValue, validate, scrollToField }] = useForm({
    labelWidth: 150,
    schemas: formSchema,
    showActionButtonGroup: false,
    baseColProps: { span: 24 },
  });
  //表单赋值
  const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
    console.log("模态框打开,操作类型:", data?.operationType);
    //重置表单
    await resetFields();
    setModalProps({ confirmLoading: false, showCancelBtn: !!data?.showFooter, showOkBtn: !!data?.showFooter });
    // 设置操作类型
    operationType.value = data?.operationType || '';
    customOnConfirm.value = data?.onConfirm || null;
    isUpdate.value = !!data?.isUpdate;
    isDetail.value = !!data?.showFooter;
    if (unref(isUpdate)) {
      //表单赋值
      await setFieldsValue({
        ...data.record,
      });
    }
    // 隐藏底部时禁用整个表单
    setProps({ disabled: !data?.showFooter });
  });
  // 根据操作类型设置标题
  const title = computed(() => {
    if (operationType.value === 'question') return '存入问题库';
    if (operationType.value === 'knowledge') return '存入知识库';
    return !unref(isUpdate) ? '新增' : !unref(isDetail) ? '详情' : '编辑';
  });
  //表单提交事件
  async function handleSubmit(v) {
    console.log('表单提交,操作类型:', operationType.value);
    try {
      let values = await validate();
      setModalProps({ confirmLoading: true });
      console.log('当前操作类型:', operationType.value);
      // 如果有传入的onConfirm函数,则执行它
      if (typeof customOnConfirm.value === 'function') {
        console.log('执行自定义确认函数');
        await customOnConfirm.value(values);
      } else {
        // 否则执行默认的保存
        console.log('执行默认保存');
        await saveOrUpdate(values, isUpdate.value);
      }
      //关闭弹窗
      closeModal();
      //刷新列表
      emit('success');
    } catch ({ errorFields }) {
      if (errorFields) {
        const firstField = errorFields[0];
        if (firstField) {
          scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
        }
      }
      return Promise.reject(errorFields);
    } finally {
      setModalProps({ confirmLoading: false });
    }
  }

  async function handleSave() {
    await handleSubmit();
  }
</script>

<style lang="less" scoped>
  /** 时间和数字输入框样式 */
  :deep(.ant-input-number) {
    width: 100%;
  }

  :deep(.ant-calendar-picker) {
    width: 100%;
  }
</style>