|
|
|
<script lang="ts" setup>
|
|
|
|
import { importTableColumns, importTableSearchFormSchema } from '../codegen.data'
|
|
|
|
import { BasicModal, useModalInner } from '@/components/Modal'
|
|
|
|
import { BasicTable, useTable } from '@/components/Table'
|
|
|
|
import { createCodegenList, getSchemaTableList } from '@/api/infra/codegen'
|
|
|
|
|
|
|
|
defineOptions({ name: 'InfraImportTableModal' })
|
|
|
|
const emit = defineEmits(['success', 'register'])
|
|
|
|
|
|
|
|
const [registerTable, { getSelectRowKeys, getForm }] = useTable({
|
|
|
|
api: getSchemaTableList,
|
|
|
|
columns: importTableColumns,
|
|
|
|
formConfig: {
|
|
|
|
labelWidth: 80,
|
|
|
|
schemas: importTableSearchFormSchema,
|
|
|
|
},
|
|
|
|
rowSelection: { type: 'checkbox' },
|
|
|
|
rowKey: 'name',
|
|
|
|
useSearchForm: true,
|
|
|
|
pagination: false,
|
|
|
|
showTableSetting: false,
|
|
|
|
showIndexColumn: false,
|
|
|
|
immediate: false,
|
|
|
|
})
|
|
|
|
|
|
|
|
const [registerModal, { setModalProps, closeModal }] = useModalInner(async () => {
|
|
|
|
setModalProps({ confirmLoading: false })
|
|
|
|
})
|
|
|
|
|
|
|
|
async function handleSubmit() {
|
|
|
|
const datas = await getSelectRowKeys()
|
|
|
|
const form = await getForm()
|
|
|
|
await createCodegenList({ dataSourceConfigId: form.getFieldsValue().dataSourceConfigId, tableNames: datas })
|
|
|
|
closeModal()
|
|
|
|
emit('success')
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<BasicModal v-bind="$attrs" :width="800" title="导入" @register="registerModal" @ok="handleSubmit">
|
|
|
|
<BasicTable @register="registerTable" />
|
|
|
|
</BasicModal>
|
|
|
|
</template>
|