170 lines
4.2 KiB
Vue
170 lines
4.2 KiB
Vue
<script lang="ts" setup>
|
|
import type { InfraCodegenApi } from '#/api/infra/codegen';
|
|
|
|
import { ref, unref } from 'vue';
|
|
import { useRoute, useRouter } from 'vue-router';
|
|
|
|
import { Page } from '@vben/common-ui';
|
|
import { useTabs } from '@vben/hooks';
|
|
|
|
import { Button, message, Steps } from 'ant-design-vue';
|
|
|
|
import { getCodegenTable, updateCodegenTable } from '#/api/infra/codegen';
|
|
import { $t } from '#/locales';
|
|
|
|
import BasicInfo from '../modules/basic-info.vue';
|
|
import ColumnInfo from '../modules/column-info.vue';
|
|
import GenerationInfo from '../modules/generation-info.vue';
|
|
|
|
const route = useRoute();
|
|
const router = useRouter();
|
|
const loading = ref(false);
|
|
const currentStep = ref(0);
|
|
const formData = ref<InfraCodegenApi.CodegenDetail>({
|
|
table: {} as InfraCodegenApi.CodegenTable,
|
|
columns: [],
|
|
});
|
|
|
|
/** 表单引用 */
|
|
const basicInfoRef = ref<InstanceType<typeof BasicInfo>>();
|
|
const columnInfoRef = ref<InstanceType<typeof ColumnInfo>>();
|
|
const generateInfoRef = ref<InstanceType<typeof GenerationInfo>>();
|
|
|
|
/** 获取详情数据 */
|
|
async function getDetail() {
|
|
const id = route.query.id as any;
|
|
if (!id) {
|
|
return;
|
|
}
|
|
loading.value = true;
|
|
try {
|
|
formData.value = await getCodegenTable(id);
|
|
} finally {
|
|
loading.value = false;
|
|
}
|
|
}
|
|
|
|
/** 提交表单 */
|
|
async function submitForm() {
|
|
// 表单验证
|
|
const basicInfoValid = await basicInfoRef.value?.validate();
|
|
if (!basicInfoValid) {
|
|
message.warn('保存失败,原因:基本信息表单校验失败请检查!!!');
|
|
return;
|
|
}
|
|
const generateInfoValid = await generateInfoRef.value?.validate();
|
|
if (!generateInfoValid) {
|
|
message.warn('保存失败,原因:生成信息表单校验失败请检查!!!');
|
|
return;
|
|
}
|
|
|
|
// 提交表单
|
|
const hideLoading = message.loading({
|
|
content: $t('ui.actionMessage.updating'),
|
|
key: 'action_process_msg',
|
|
});
|
|
try {
|
|
// 拼接相关信息
|
|
const basicInfo = await basicInfoRef.value?.getValues();
|
|
const columns = columnInfoRef.value?.getData() || unref(formData).columns;
|
|
const generateInfo = await generateInfoRef.value?.getValues();
|
|
await updateCodegenTable({
|
|
table: { ...unref(formData).table, ...basicInfo, ...generateInfo },
|
|
columns,
|
|
});
|
|
// 关闭并提示
|
|
message.success({
|
|
content: $t('ui.actionMessage.operationSuccess'),
|
|
key: 'action_key_msg',
|
|
});
|
|
close();
|
|
} catch (error) {
|
|
console.error('保存失败', error);
|
|
} finally {
|
|
hideLoading();
|
|
}
|
|
}
|
|
const tabs = useTabs();
|
|
/** 返回列表 */
|
|
function close() {
|
|
tabs.closeCurrentTab();
|
|
router.push('/infra/codegen');
|
|
}
|
|
|
|
/** 下一步 */
|
|
function nextStep() {
|
|
currentStep.value += 1;
|
|
}
|
|
|
|
/** 上一步 */
|
|
function prevStep() {
|
|
if (currentStep.value > 0) {
|
|
currentStep.value -= 1;
|
|
}
|
|
}
|
|
|
|
/** 步骤配置 */
|
|
const steps = [
|
|
{
|
|
title: '基本信息',
|
|
},
|
|
{
|
|
title: '字段信息',
|
|
},
|
|
{
|
|
title: '生成信息',
|
|
},
|
|
];
|
|
|
|
// 初始化
|
|
getDetail();
|
|
</script>
|
|
|
|
<template>
|
|
<Page auto-content-height v-loading="loading">
|
|
<div class="bg-card flex h-[95%] flex-col rounded-md p-4">
|
|
<Steps
|
|
type="navigation"
|
|
v-model:current="currentStep"
|
|
class="mb-8 rounded shadow-sm"
|
|
>
|
|
<Steps.Step
|
|
v-for="(step, index) in steps"
|
|
:key="index"
|
|
:title="step.title"
|
|
/>
|
|
</Steps>
|
|
|
|
<div class="flex-1 overflow-auto py-4">
|
|
<!-- 根据当前步骤显示对应的组件 -->
|
|
<BasicInfo
|
|
v-show="currentStep === 0"
|
|
ref="basicInfoRef"
|
|
:table="formData.table"
|
|
/>
|
|
<ColumnInfo
|
|
v-show="currentStep === 1"
|
|
ref="columnInfoRef"
|
|
:columns="formData.columns"
|
|
/>
|
|
<GenerationInfo
|
|
v-show="currentStep === 2"
|
|
ref="generateInfoRef"
|
|
:table="formData.table"
|
|
:columns="formData.columns"
|
|
/>
|
|
</div>
|
|
|
|
<div class="mt-4 flex justify-end space-x-2">
|
|
<Button v-show="currentStep > 0" @click="prevStep">上一步</Button>
|
|
<Button v-show="currentStep < steps.length - 1" @click="nextStep">
|
|
下一步
|
|
</Button>
|
|
<Button type="primary" :loading="loading" @click="submitForm">
|
|
保存
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</Page>
|
|
</template>
|