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.

41 lines
1.3 KiB

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