|
|
|
<template>
|
|
|
|
<BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose :title="title" :width="800" @ok="handleSubmit">
|
|
|
|
<BasicForm @register="registerForm" name="TestForm" />
|
|
|
|
<BasicForm @register="registerForm" name="TestForm" />
|
|
|
|
</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 '../Test.data';
|
|
|
|
import {saveOrUpdate} from '../Test.api';
|
|
|
|
// Emits声明
|
|
|
|
const emit = defineEmits(['register','success']);
|
|
|
|
const isUpdate = ref(true);
|
|
|
|
const isDetail = ref(false);
|
|
|
|
//表单配置
|
|
|
|
const [registerForm, { setProps,resetFields, setFieldsValue, validate, scrollToField }] = useForm({
|
|
|
|
labelWidth: 150,
|
|
|
|
schemas: formSchema,
|
|
|
|
showActionButtonGroup: false,
|
|
|
|
baseColProps: {span: 24}
|
|
|
|
});
|
|
|
|
//表单赋值
|
|
|
|
const [registerModal, {setModalProps, closeModal}] = useModalInner(async (data) => {
|
|
|
|
//重置表单
|
|
|
|
await resetFields();
|
|
|
|
setModalProps({confirmLoading: false,showCancelBtn:!!data?.showFooter,showOkBtn:!!data?.showFooter});
|
|
|
|
isUpdate.value = !!data?.isUpdate;
|
|
|
|
isDetail.value = !!data?.showFooter;
|
|
|
|
if (unref(isUpdate)) {
|
|
|
|
//表单赋值
|
|
|
|
await setFieldsValue({
|
|
|
|
...data.record,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// 隐藏底部时禁用整个表单
|
|
|
|
setProps({ disabled: !data?.showFooter })
|
|
|
|
});
|
|
|
|
//设置标题
|
|
|
|
const title = computed(() => (!unref(isUpdate) ? '新增' : !unref(isDetail) ? '详情' : '编辑'));
|
|
|
|
//表单提交事件
|
|
|
|
async function handleSubmit(v) {
|
|
|
|
import { ref, computed, unref } from 'vue';
|
|
|
|
import { BasicModal, useModalInner } from '/@/components/Modal';
|
|
|
|
import { BasicForm, useForm } from '/@/components/Form/index';
|
|
|
|
import { formSchema } from '../Test.data';
|
|
|
|
import { saveOrUpdate } from '../Test.api';
|
|
|
|
// Emits声明
|
|
|
|
const emit = defineEmits(['register', 'success']);
|
|
|
|
const isUpdate = ref(true);
|
|
|
|
const isDetail = ref(false);
|
|
|
|
//表单配置
|
|
|
|
const [registerForm, { setProps, resetFields, setFieldsValue, validate, scrollToField }] = useForm({
|
|
|
|
labelWidth: 150,
|
|
|
|
schemas: formSchema,
|
|
|
|
showActionButtonGroup: false,
|
|
|
|
baseColProps: { span: 24 },
|
|
|
|
});
|
|
|
|
//表单赋值
|
|
|
|
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
|
|
|
|
//重置表单
|
|
|
|
await resetFields();
|
|
|
|
setModalProps({ confirmLoading: false, showCancelBtn: !!data?.showFooter, showOkBtn: !!data?.showFooter });
|
|
|
|
isUpdate.value = !!data?.isUpdate;
|
|
|
|
isDetail.value = !!data?.showFooter;
|
|
|
|
if (unref(isUpdate)) {
|
|
|
|
const formData = { ...data.record };
|
|
|
|
|
|
|
|
// 如果是详情模式,提取 metadata 中的 docName
|
|
|
|
if (formData.metadata) {
|
|
|
|
try {
|
|
|
|
let values = await validate();
|
|
|
|
setModalProps({confirmLoading: true});
|
|
|
|
//提交表单
|
|
|
|
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});
|
|
|
|
const metadata = typeof formData.metadata === 'string' ? JSON.parse(formData.metadata) : formData.metadata;
|
|
|
|
formData.docName = metadata.docName || '未命名';
|
|
|
|
} catch (e) {
|
|
|
|
console.error('元数据解析失败', e);
|
|
|
|
formData.docName = '元数据格式错误';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
await setFieldsValue(formData);
|
|
|
|
}
|
|
|
|
// 隐藏底部时禁用整个表单
|
|
|
|
setProps({ disabled: !data?.showFooter });
|
|
|
|
});
|
|
|
|
//设置标题
|
|
|
|
const title = computed(() => (!unref(isUpdate) ? '新增' : !unref(isDetail) ? '详情' : '编辑'));
|
|
|
|
//表单提交事件
|
|
|
|
async function handleSubmit() {
|
|
|
|
try {
|
|
|
|
let values = await validate();
|
|
|
|
|
|
|
|
// 仅保留需要的字段,其他由后端自动生成
|
|
|
|
const payload = {
|
|
|
|
id: values.id,
|
|
|
|
docName: values.docName, // 文件名称
|
|
|
|
text: values.text, // 文件内容
|
|
|
|
};
|
|
|
|
setModalProps({ confirmLoading: true });
|
|
|
|
//提交表单
|
|
|
|
await saveOrUpdate(payload, isUpdate.value);
|
|
|
|
//关闭弹窗
|
|
|
|
closeModal();
|
|
|
|
//刷新列表
|
|
|
|
emit('success');
|
|
|
|
} catch ({ errorFields }) {
|
|
|
|
if (errorFields) {
|
|
|
|
const firstField = errorFields[0];
|
|
|
|
if (firstField) {
|
|
|
|
scrollToField(firstField.name, { behavior: 'smooth', block: any });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Promise.reject(errorFields);
|
|
|
|
} finally {
|
|
|
|
setModalProps({ confirmLoading: false });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
/** 时间和数字输入框样式 */
|
|
|
|
/** 时间和数字输入框样式 */
|
|
|
|
:deep(.ant-input-number) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
...
|
...
|
@@ -73,4 +90,4 @@ |
|
|
|
:deep(.ant-calendar-picker) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
</style> |
|
|
\ No newline at end of file |
|
|
|
</style> |
...
|
...
|
|