86 lines
1.9 KiB
Vue
86 lines
1.9 KiB
Vue
<script lang="ts" setup>
|
|
import type {
|
|
OnActionClickParams,
|
|
VxeTableGridOptions,
|
|
} from '#/adapter/vxe-table';
|
|
import type { SystemMailLogApi } from '#/api/system/mail/log';
|
|
|
|
import { Page, useVbenModal } from '@vben/common-ui';
|
|
|
|
import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
|
import { getMailLogPage } from '#/api/system/mail/log';
|
|
import { DocAlert } from '#/components/doc-alert';
|
|
|
|
import { useGridColumns, useGridFormSchema } from './data';
|
|
import Detail from './modules/detail.vue';
|
|
|
|
const [DetailModal, detailModalApi] = useVbenModal({
|
|
connectedComponent: Detail,
|
|
destroyOnClose: true,
|
|
});
|
|
|
|
/** 刷新表格 */
|
|
function onRefresh() {
|
|
gridApi.query();
|
|
}
|
|
|
|
/** 查看邮件日志 */
|
|
function onDetail(row: SystemMailLogApi.MailLog) {
|
|
detailModalApi.setData(row).open();
|
|
}
|
|
|
|
/** 表格操作按钮的回调函数 */
|
|
function onActionClick({
|
|
code,
|
|
row,
|
|
}: OnActionClickParams<SystemMailLogApi.MailLog>) {
|
|
switch (code) {
|
|
case 'detail': {
|
|
onDetail(row);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
const [Grid, gridApi] = useVbenVxeGrid({
|
|
formOptions: {
|
|
schema: useGridFormSchema(),
|
|
},
|
|
gridOptions: {
|
|
columns: useGridColumns(onActionClick),
|
|
height: 'auto',
|
|
keepSource: true,
|
|
proxyConfig: {
|
|
ajax: {
|
|
query: async ({ page }, formValues) => {
|
|
return await getMailLogPage({
|
|
pageNo: page.currentPage,
|
|
pageSize: page.pageSize,
|
|
...formValues,
|
|
});
|
|
},
|
|
},
|
|
},
|
|
rowConfig: {
|
|
keyField: 'id',
|
|
},
|
|
toolbarConfig: {
|
|
refresh: { code: 'query' },
|
|
search: true,
|
|
},
|
|
} as VxeTableGridOptions<SystemMailLogApi.MailLog>,
|
|
});
|
|
</script>
|
|
<template>
|
|
<Page auto-content-height>
|
|
<template #doc>
|
|
<DocAlert title="邮件配置" url="https://doc.iocoder.cn/mail" />
|
|
</template>
|
|
|
|
<DetailModal @success="onRefresh" />
|
|
<Grid table-title="邮件日志列表">
|
|
<template #toolbar-tools> </template>
|
|
</Grid>
|
|
</Page>
|
|
</template>
|