<!--
|
使用antd原生Form生成 详细用法参考ant-design-vue Form组件文档
|
vscode默认配置文件会自动格式化/移除未使用依赖
|
-->
|
<script setup lang="ts">
|
import type { RuleObject } from 'ant-design-vue/es/form';
|
|
import type { PackagePlanForm } from '#/api/system/packagePlan/model';
|
|
import { computed, ref } from 'vue';
|
|
import { useVbenModal } from '@vben/common-ui';
|
import { $t } from '@vben/locales';
|
import { cloneDeep } from '@vben/utils';
|
|
import { Form, FormItem, Input, Textarea } from 'ant-design-vue';
|
import { pick } from 'lodash-es';
|
|
import {
|
packagePlanAdd,
|
packagePlanInfo,
|
packagePlanUpdate,
|
} from '#/api/system/packagePlan';
|
|
const emit = defineEmits<{ reload: [] }>();
|
|
const isUpdate = ref(false);
|
const title = computed(() => {
|
return isUpdate.value ? $t('pages.common.edit') : $t('pages.common.add');
|
});
|
|
/**
|
* 定义默认值 用于reset
|
*/
|
const defaultValues: Partial<PackagePlanForm> = {
|
id: undefined,
|
name: undefined,
|
price: undefined,
|
duration: undefined,
|
planDetail: undefined,
|
remark: undefined,
|
};
|
|
/**
|
* 表单数据ref
|
*/
|
const formData = ref(defaultValues);
|
|
type AntdFormRules<T> = Partial<Record<keyof T, RuleObject[]>> & {
|
[key: string]: RuleObject[];
|
};
|
/**
|
* 表单校验规则
|
*/
|
const formRules = ref<AntdFormRules<PackagePlanForm>>({
|
name: [{ required: true, message: '套餐名称不能为空' }],
|
price: [{ required: true, message: '套餐价格不能为空' }],
|
duration: [{ required: true, message: '有效时间不能为空' }],
|
planDetail: [{ required: true, message: '计划详情不能为空' }],
|
remark: [{ required: true, message: '备注不能为空' }],
|
});
|
|
/**
|
* useForm解构出表单方法
|
*/
|
const { validate, validateInfos, resetFields } = Form.useForm(
|
formData,
|
formRules,
|
);
|
|
const [BasicModal, modalApi] = useVbenModal({
|
class: 'w-[550px]',
|
fullscreenButton: false,
|
closeOnClickModal: false,
|
onClosed: handleCancel,
|
onConfirm: handleConfirm,
|
onOpenChange: async (isOpen) => {
|
if (!isOpen) {
|
return null;
|
}
|
modalApi.modalLoading(true);
|
|
const { id } = modalApi.getData() as { id?: number | string };
|
isUpdate.value = !!id;
|
|
if (isUpdate.value && id) {
|
const record = await packagePlanInfo(id);
|
// 只赋值存在的字段
|
const filterRecord = pick(record, Object.keys(defaultValues));
|
formData.value = filterRecord;
|
}
|
|
modalApi.modalLoading(false);
|
},
|
});
|
|
async function handleConfirm() {
|
try {
|
modalApi.modalLoading(true);
|
await validate();
|
// 可能会做数据处理 使用cloneDeep深拷贝
|
const data = cloneDeep(formData.value);
|
await (isUpdate.value ? packagePlanUpdate(data) : packagePlanAdd(data));
|
emit('reload');
|
await handleCancel();
|
} catch (error) {
|
console.error(error);
|
} finally {
|
modalApi.modalLoading(false);
|
}
|
}
|
|
async function handleCancel() {
|
modalApi.close();
|
formData.value = defaultValues;
|
resetFields();
|
}
|
</script>
|
|
<template>
|
<BasicModal :title="title">
|
<Form :label-col="{ span: 4 }">
|
<FormItem label="套餐名称" v-bind="validateInfos.name">
|
<Input
|
v-model:value="formData.name"
|
:placeholder="$t('ui.formRules.required')"
|
/>
|
</FormItem>
|
<FormItem label="套餐价格" v-bind="validateInfos.price">
|
<Input
|
v-model:value="formData.price"
|
:placeholder="$t('ui.formRules.required')"
|
/>
|
</FormItem>
|
<FormItem label="有效时间" v-bind="validateInfos.duration">
|
<Input
|
v-model:value="formData.duration"
|
:placeholder="$t('ui.formRules.required')"
|
/>
|
</FormItem>
|
<FormItem label="计划详情" v-bind="validateInfos.planDetail">
|
<Textarea
|
v-model:value="formData.planDetail"
|
:placeholder="$t('ui.formRules.required')"
|
:rows="4"
|
/>
|
</FormItem>
|
<FormItem label="备注" v-bind="validateInfos.remark">
|
<Textarea
|
v-model:value="formData.remark"
|
:placeholder="$t('ui.formRules.required')"
|
:rows="4"
|
/>
|
</FormItem>
|
</Form>
|
</BasicModal>
|
</template>
|