<script lang="ts" setup>
|
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
import type { InfraApiAccessLogApi } from '#/api/infra/api-access-log';
|
|
import { Page, useVbenModal } from '@vben/common-ui';
|
import { downloadFileFromBlobPart } from '@vben/utils';
|
|
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
import {
|
exportApiAccessLog,
|
getApiAccessLogPage,
|
} from '#/api/infra/api-access-log';
|
import { $t } from '#/locales';
|
|
import { useGridColumns, useGridFormSchema } from './data';
|
import Detail from './modules/detail.vue';
|
|
const [DetailModal, detailModalApi] = useVbenModal({
|
connectedComponent: Detail,
|
destroyOnClose: true,
|
});
|
|
/** 刷新表格 */
|
function handleRefresh() {
|
gridApi.query();
|
}
|
|
/** 导出表格 */
|
async function handleExport() {
|
const data = await exportApiAccessLog(await gridApi.formApi.getValues());
|
downloadFileFromBlobPart({ fileName: 'API 访问日志.xls', source: data });
|
}
|
|
/** 查看 API 访问日志详情 */
|
function handleDetail(row: InfraApiAccessLogApi.ApiAccessLog) {
|
detailModalApi.setData(row).open();
|
}
|
|
const [Grid, gridApi] = useVbenVxeGrid({
|
formOptions: {
|
schema: useGridFormSchema(),
|
},
|
gridOptions: {
|
columns: useGridColumns(),
|
height: 'auto',
|
keepSource: true,
|
proxyConfig: {
|
ajax: {
|
query: async ({ page }, formValues) => {
|
return await getApiAccessLogPage({
|
pageNo: page.currentPage,
|
pageSize: page.pageSize,
|
...formValues,
|
});
|
},
|
},
|
},
|
rowConfig: {
|
keyField: 'id',
|
isHover: true,
|
},
|
toolbarConfig: {
|
refresh: true,
|
search: true,
|
},
|
} as VxeTableGridOptions<InfraApiAccessLogApi.ApiAccessLog>,
|
});
|
</script>
|
|
<template>
|
<Page auto-content-height><DetailModal @success="handleRefresh" />
|
<Grid table-title="API 访问日志列表">
|
<template #toolbar-tools>
|
<TableAction
|
:actions="[
|
{
|
label: $t('ui.actionTitle.export'),
|
type: 'primary',
|
icon: ACTION_ICON.DOWNLOAD,
|
auth: ['infra:api-access-log:export'],
|
onClick: handleExport,
|
},
|
]"
|
/>
|
</template>
|
<template #actions="{ row }">
|
<TableAction
|
:actions="[
|
{
|
label: $t('common.detail'),
|
type: 'link',
|
icon: ACTION_ICON.VIEW,
|
auth: ['infra:api-access-log:query'],
|
onClick: handleDetail.bind(null, row),
|
},
|
]"
|
/>
|
</template>
|
</Grid>
|
</Page>
|
</template>
|