149 lines
4.0 KiB
Vue
149 lines
4.0 KiB
Vue
<script lang="ts" setup>
|
||
import type { OnActionClickParams, VxeTableGridOptions } from '#/adapter/vxe-table';
|
||
import type { Demo03StudentApi } from '#/api/infra/demo/demo03/inner';
|
||
|
||
import Demo03CourseList from './modules/Demo03CourseList.vue';
|
||
import Demo03GradeList from './modules/Demo03GradeList.vue';
|
||
import Form from './modules/form.vue';
|
||
import { Page, useVbenModal } from '@vben/common-ui';
|
||
import { Download, Plus } from '@vben/icons';
|
||
import { Button, message, Tabs } from 'ant-design-vue';
|
||
|
||
import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
||
import { deleteDemo03Student, exportDemo03Student, getDemo03StudentPage } from '#/api/infra/demo/demo03/inner';
|
||
import { $t } from '#/locales';
|
||
import { downloadByData } from '#/utils/download';
|
||
import { h, ref } from 'vue';
|
||
|
||
import { useGridColumns, useGridFormSchema } from './data';
|
||
|
||
/** 子表的列表 */
|
||
const subTabsName = ref('demo03Course');
|
||
|
||
const [FormModal, formModalApi] = useVbenModal({
|
||
connectedComponent: Form,
|
||
destroyOnClose: true,
|
||
});
|
||
|
||
/** 刷新表格 */
|
||
function onRefresh() {
|
||
gridApi.reload();
|
||
}
|
||
|
||
/** 导出表格 */
|
||
async function onExport() {
|
||
const data = await exportDemo03Student(await gridApi.formApi.getValues());
|
||
downloadByData(data, '学生.xls');
|
||
}
|
||
|
||
/** 创建学生 */
|
||
function onCreate() {
|
||
formModalApi.setData({}).open();
|
||
}
|
||
|
||
/** 编辑学生 */
|
||
function onEdit(row: Demo03StudentApi.Demo03Student) {
|
||
formModalApi.setData(row).open();
|
||
}
|
||
|
||
/** 删除学生 */
|
||
async function onDelete(row: Demo03StudentApi.Demo03Student) {
|
||
const hideLoading = message.loading({
|
||
content: $t('ui.actionMessage.deleting', [row.id]),
|
||
duration: 0,
|
||
key: 'action_process_msg',
|
||
});
|
||
try {
|
||
await deleteDemo03Student(row.id as number);
|
||
message.success({
|
||
content: $t('ui.actionMessage.deleteSuccess', [row.id]),
|
||
key: 'action_process_msg',
|
||
});
|
||
onRefresh();
|
||
} catch {
|
||
hideLoading();
|
||
}
|
||
}
|
||
|
||
/** 表格操作按钮的回调函数 */
|
||
function onActionClick({ code, row }: OnActionClickParams<Demo03StudentApi.Demo03Student>) {
|
||
switch (code) {
|
||
case 'delete': {
|
||
onDelete(row);
|
||
break;
|
||
}
|
||
case 'edit': {
|
||
onEdit(row);
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
|
||
const [Grid, gridApi] = useVbenVxeGrid({
|
||
formOptions: {
|
||
schema: useGridFormSchema(),
|
||
},
|
||
gridOptions: {
|
||
columns: useGridColumns(onActionClick),
|
||
height: 'auto',
|
||
pagerConfig: {
|
||
enabled: true,
|
||
},
|
||
proxyConfig: {
|
||
ajax: {
|
||
query: async ({ page }, formValues) => {
|
||
return await getDemo03StudentPage({
|
||
pageNo: page.currentPage,
|
||
pageSize: page.pageSize,
|
||
...formValues,
|
||
});
|
||
},
|
||
},
|
||
},
|
||
rowConfig: {
|
||
keyField: 'id',
|
||
isHover: true,
|
||
},
|
||
toolbarConfig: {
|
||
refresh: { code: 'query' },
|
||
search: true,
|
||
},
|
||
} as VxeTableGridOptions<Demo03StudentApi.Demo03Student>,
|
||
});
|
||
</script>
|
||
|
||
<template>
|
||
<Page auto-content-height>
|
||
<FormModal @success="onRefresh" />
|
||
|
||
<Grid table-title="学生列表">
|
||
<template #expand_content="{ row }">
|
||
<!-- 子表的表单 -->
|
||
<!-- TODO @puhui999:【样式优化】1)Tabs 和箭头对齐;2)子 Table 也和箭头对齐 -->
|
||
<Tabs v-model:active-key="subTabsName">
|
||
<Tabs.TabPane key="demo03Course" tab="学生课程" force-render>
|
||
<Demo03CourseList :student-id="row?.id" />
|
||
</Tabs.TabPane>
|
||
<Tabs.TabPane key="demo03Grade" tab="学生班级" force-render>
|
||
<Demo03GradeList :student-id="row?.id" />
|
||
</Tabs.TabPane>
|
||
</Tabs>
|
||
</template>
|
||
<template #toolbar-tools>
|
||
<Button :icon="h(Plus)" type="primary" @click="onCreate" v-access:code="['infra:demo03-student:create']">
|
||
{{ $t('ui.actionTitle.create', ['学生']) }}
|
||
</Button>
|
||
<Button
|
||
:icon="h(Download)"
|
||
type="primary"
|
||
class="ml-2"
|
||
@click="onExport"
|
||
v-access:code="['infra:demo03-student:export']"
|
||
>
|
||
{{ $t('ui.actionTitle.export') }}
|
||
</Button>
|
||
</template>
|
||
</Grid>
|
||
</Page>
|
||
</template>
|