这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
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.
 
 
 
 
 
 

253 lines
6.0 KiB

<script setup lang="ts">
import type { VbenFormProps, VxeGridListeners, VxeGridProps } from '@abp/ui';
import type { SecurityLogDto } from '../../types/security-logs';
import { defineAsyncComponent, h } from 'vue';
import { useVbenDrawer } from '@vben/common-ui';
import { $t } from '@vben/locales';
import { formatToDateTime, type SortOrder } from '@abp/core';
import { useVbenVxeGrid } from '@abp/ui';
import { DeleteOutlined, EditOutlined } from '@ant-design/icons-vue';
import { Button, message, Modal, Tag } from 'ant-design-vue';
import { deleteApi, getPagedListApi } from '../../api/security-logs';
import { SecurityLogPermissions } from '../../constants/permissions';
defineOptions({
name: 'SecurityLogTable',
});
const formOptions: VbenFormProps = {
// 默认展开
collapsed: false,
fieldMappingTime: [['creationTime', ['startTime', 'endTime'], 'YYYY-MM-DD']],
schema: [
{
component: 'RangePicker',
fieldName: 'creationTime',
formItemClass: 'col-span-2 items-baseline',
label: $t('AbpAuditLogging.CreationTime'),
},
{
component: 'Input',
fieldName: 'applicationName',
label: $t('AbpAuditLogging.ApplicationName'),
},
{
component: 'Input',
fieldName: 'userName',
label: $t('AbpAuditLogging.UserName'),
},
{
component: 'Input',
fieldName: 'clientId',
label: $t('AbpAuditLogging.ClientId'),
},
{
component: 'Input',
fieldName: 'identity',
label: $t('AbpAuditLogging.Identity'),
},
{
component: 'Input',
fieldName: 'action',
label: $t('AbpAuditLogging.ActionName'),
},
{
component: 'Input',
fieldName: 'correlationId',
label: $t('AbpAuditLogging.CorrelationId'),
},
],
// 控制表单是否显示折叠按钮
showCollapseButton: true,
// 按下回车时是否提交表单
submitOnEnter: true,
wrapperClass: 'grid-cols-4',
};
const gridOptions: VxeGridProps<SecurityLogDto> = {
columns: [
{
align: 'left',
field: 'creationTime',
formatter: ({ cellValue }) => {
return cellValue ? formatToDateTime(cellValue) : cellValue;
},
sortable: true,
title: $t('AbpAuditLogging.CreationTime'),
width: 180,
},
{
align: 'left',
field: 'identity',
sortable: true,
title: $t('AbpAuditLogging.Identity'),
width: 180,
},
{
align: 'left',
field: 'userName',
sortable: true,
title: $t('AbpAuditLogging.UserName'),
width: 150,
},
{
align: 'left',
field: 'clientId',
sortable: true,
title: $t('AbpAuditLogging.ClientId'),
width: 200,
},
{
align: 'left',
field: 'clientIpAddress',
slots: { default: 'clientIpAddress' },
sortable: true,
title: $t('AbpAuditLogging.ClientIpAddress'),
width: 200,
},
{
align: 'left',
field: 'applicationName',
sortable: true,
title: $t('AbpAuditLogging.ApplicationName'),
width: 200,
},
{
align: 'left',
field: 'tenantName',
sortable: true,
title: $t('AbpAuditLogging.TenantName'),
width: 180,
},
{
align: 'left',
field: 'action',
sortable: true,
title: $t('AbpAuditLogging.Actions'),
width: 180,
},
{
align: 'left',
field: 'correlationId',
sortable: true,
title: $t('AbpAuditLogging.CorrelationId'),
width: 200,
},
{
align: 'left',
field: 'browserInfo',
sortable: true,
title: $t('AbpAuditLogging.BrowserInfo'),
width: 'auto',
},
{
field: 'actions',
fixed: 'right',
slots: { default: 'action' },
title: $t('AbpUi.Actions'),
width: 220,
},
],
exportConfig: {},
keepSource: true,
proxyConfig: {
ajax: {
query: async ({ page }, formValues) => {
return await getPagedListApi({
maxResultCount: page.pageSize,
skipCount: (page.currentPage - 1) * page.pageSize,
...formValues,
});
},
},
response: {
total: 'totalCount',
list: 'items',
},
},
toolbarConfig: {
custom: true,
export: true,
// import: true,
refresh: true,
zoom: true,
},
};
const gridEvents: VxeGridListeners<SecurityLogDto> = {
sortChange: onSort,
};
const [Grid, gridApi] = useVbenVxeGrid({
formOptions,
gridEvents,
gridOptions,
});
const [SecurityLogDrawer, drawerApi] = useVbenDrawer({
connectedComponent: defineAsyncComponent(
() => import('./SecurityLogDrawer.vue'),
),
});
function onUpdate(row: SecurityLogDto) {
drawerApi.setData(row);
drawerApi.open();
}
function onDelete(row: SecurityLogDto) {
Modal.confirm({
centered: true,
content: $t('AbpUi.ItemWillBeDeletedMessage'),
onOk: async () => {
await deleteApi(row.id);
message.success($t('AbpUi.SuccessfullyDeleted'));
gridApi.query();
},
title: $t('AbpUi.AreYouSure'),
});
}
function onSort(params: { field: string; order: SortOrder }) {
const sorting = params.order ? `${params.field} ${params.order}` : undefined;
gridApi.query({ sorting });
}
</script>
<template>
<Grid :table-title="$t('AbpAuditLogging.SecurityLog')">
<template #clientIpAddress="{ row }">
<Tag v-if="row.extraProperties?.Location" color="blue">
{{ row.extraProperties?.Location }}
</Tag>
<span>{{ row.clientIpAddress }}</span>
</template>
<template #action="{ row }">
<div class="flex flex-row">
<Button
:icon="h(EditOutlined)"
block
type="link"
v-access:code="[SecurityLogPermissions.Default]"
@click="onUpdate(row)"
>
{{ $t('AbpUi.Edit') }}
</Button>
<Button
:icon="h(DeleteOutlined)"
block
danger
type="link"
v-access:code="[SecurityLogPermissions.Delete]"
@click="onDelete(row)"
>
{{ $t('AbpUi.Delete') }}
</Button>
</div>
</template>
</Grid>
<SecurityLogDrawer />
</template>