You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

83 lines
2.5 KiB

<template>
<div>
<BasicTable @register="registerTable">
<template #toolbar>
2 years ago
<a-button type="primary" :preIcon="IconEnum.IMPORT" @click="openImportTable"> {{ t('action.import') }} </a-button>
</template>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'action'">
<TableAction
:actions="[
2 years ago
{ icon: IconEnum.EDIT, label: t('action.view'), onClick: handleEdit.bind(null, record) },
{ icon: IconEnum.EDIT, label: t('action.edit'), onClick: handleEdit.bind(null, record) },
2 years ago
{ icon: IconEnum.EDIT, label: '同步', onClick: handleEdit.bind(null, record) },
{ icon: IconEnum.EDIT, label: '生成代码', onClick: handleEdit.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>
2 years ago
<ImportTableModal @register="registerModal" @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'
2 years ago
import ImportTableModal from './ImportTableModal.vue'
import { IconEnum } from '@/enums/appEnum'
import { BasicTable, useTable, TableAction } from '@/components/Table'
import { deleteCodegenTable, getCodegenTablePage } from '@/api/infra/codegen'
import { columns, searchFormSchema } from './codegen.data'
const { t } = useI18n()
const { createMessage } = useMessage()
const [registerModal, { openModal }] = useModal()
const [registerTable, { reload }] = useTable({
title: '代码生成列表',
api: getCodegenTablePage,
columns,
formConfig: {
labelWidth: 120,
schemas: searchFormSchema
},
useSearchForm: true,
showTableSetting: true,
showIndexColumn: false,
actionColumn: {
2 years ago
width: 360,
title: t('common.action'),
dataIndex: 'action',
fixed: 'right'
}
})
2 years ago
function openImportTable() {
openModal(true)
}
function handleEdit(record: Recordable) {
openModal(true, {
record,
isUpdate: true
})
}
async function handleDelete(record: Recordable) {
await deleteCodegenTable(record.id)
createMessage.success(t('common.delSuccessText'))
reload()
}
</script>