|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<BasicTable @register="registerTable">
|
|
|
|
<template #toolbar>
|
|
|
|
<a-button type="primary" :preIcon="IconEnum.IMPORT" @click="openImportTableModal(true)"> {{ t('action.import') }} </a-button>
|
|
|
|
</template>
|
|
|
|
<template #bodyCell="{ column, record }">
|
|
|
|
<template v-if="column.key === 'action'">
|
|
|
|
<TableAction
|
|
|
|
:actions="[
|
|
|
|
{ icon: IconEnum.EDIT, label: '预览', onClick: handlePreview.bind(null, record) },
|
|
|
|
{ icon: IconEnum.EDIT, label: t('action.edit'), onClick: handleEdit.bind(null, record) },
|
|
|
|
{ icon: IconEnum.DOWNLOAD, label: '生成', onClick: handleGenTable.bind(null, record) },
|
|
|
|
{
|
|
|
|
icon: IconEnum.RESET,
|
|
|
|
label: '同步',
|
|
|
|
popConfirm: {
|
|
|
|
title: '确认要强制同步' + record.tableName + '表结构吗?',
|
|
|
|
placement: 'left',
|
|
|
|
confirm: handleSynchDb.bind(null, record)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: IconEnum.DELETE,
|
|
|
|
color: 'error',
|
|
|
|
label: t('action.delete'),
|
|
|
|
popConfirm: {
|
|
|
|
title: t('common.delMessage'),
|
|
|
|
placement: 'left',
|
|
|
|
confirm: handleDelete.bind(null, record)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]"
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</BasicTable>
|
|
|
|
<PreviewModal @register="registerPreviewModal" />
|
|
|
|
<ImportTableModal @register="registerImportTableModal" @success="reload()" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script lang="ts" setup name="Codegen">
|
|
|
|
import { useI18n } from '@/hooks/web/useI18n'
|
|
|
|
import { useMessage } from '@/hooks/web/useMessage'
|
|
|
|
import { useModal } from '@/components/Modal'
|
|
|
|
import PreviewModal from './components/PreviewModal.vue'
|
|
|
|
import ImportTableModal from './components/ImportTableModal.vue'
|
|
|
|
import { IconEnum } from '@/enums/appEnum'
|
|
|
|
import { BasicTable, useTable, TableAction } from '@/components/Table'
|
|
|
|
import { deleteCodegenTable, downloadCodegen, getCodegenTablePage, syncCodegenFromDB } from '@/api/infra/codegen'
|
|
|
|
import { columns, searchFormSchema } from './codegen.data'
|
|
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
|
const { createMessage } = useMessage()
|
|
|
|
const [registerPreviewModal, { openModal: openPreviewModal }] = useModal()
|
|
|
|
const [registerImportTableModal, { openModal: openImportTableModal }] = useModal()
|
|
|
|
|
|
|
|
const [registerTable, { reload }] = useTable({
|
|
|
|
title: '代码生成列表',
|
|
|
|
api: getCodegenTablePage,
|
|
|
|
columns,
|
|
|
|
formConfig: {
|
|
|
|
labelWidth: 120,
|
|
|
|
schemas: searchFormSchema
|
|
|
|
},
|
|
|
|
useSearchForm: true,
|
|
|
|
showTableSetting: true,
|
|
|
|
showIndexColumn: false,
|
|
|
|
actionColumn: {
|
|
|
|
width: 360,
|
|
|
|
title: t('common.action'),
|
|
|
|
dataIndex: 'action',
|
|
|
|
fixed: 'right'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
function handlePreview(record: Recordable) {
|
|
|
|
openPreviewModal(true, {
|
|
|
|
record
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleEdit(record: Recordable) {
|
|
|
|
openPreviewModal(true, {
|
|
|
|
record
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
async function handleGenTable(record: Recordable) {
|
|
|
|
await downloadCodegen(record)
|
|
|
|
createMessage.success(t('common.successText'))
|
|
|
|
}
|
|
|
|
|
|
|
|
async function handleSynchDb(record: Recordable) {
|
|
|
|
await syncCodegenFromDB(record.id)
|
|
|
|
createMessage.success(t('common.successText'))
|
|
|
|
reload()
|
|
|
|
}
|
|
|
|
|
|
|
|
async function handleDelete(record: Recordable) {
|
|
|
|
await deleteCodegenTable(record.id)
|
|
|
|
createMessage.success(t('common.delSuccessText'))
|
|
|
|
reload()
|
|
|
|
}
|
|
|
|
</script>
|