ruoyi-plus-vben5/apps/web-antd/src/views/monitor/operlog/data.tsx
2025-04-04 21:06:16 +08:00

92 lines
2.0 KiB
TypeScript

import type { FormSchemaGetter } from '#/adapter/form';
import type { VxeGridProps } from '#/adapter/vxe-table';
import { DictEnum } from '@vben/constants';
import { getDictOptions } from '#/utils/dict';
import { renderDict } from '#/utils/render';
export const querySchema: FormSchemaGetter = () => [
{
component: 'Input',
fieldName: 'title',
label: '系统模块',
},
{
component: 'Input',
fieldName: 'operName',
label: '操作人员',
},
{
component: 'Select',
componentProps: {
options: getDictOptions(DictEnum.SYS_OPER_TYPE),
},
fieldName: 'businessType',
label: '操作类型',
},
{
component: 'Input',
fieldName: 'operIp',
label: '操作IP',
},
{
component: 'Select',
componentProps: {
options: getDictOptions(DictEnum.SYS_COMMON_STATUS),
},
fieldName: 'status',
label: '状态',
},
{
component: 'RangePicker',
fieldName: 'createTime',
label: '操作时间',
componentProps: {
valueFormat: 'YYYY-MM-DD HH:mm:ss',
},
},
];
export const columns: VxeGridProps['columns'] = [
{ type: 'checkbox', width: 60 },
{ field: 'title', title: '系统模块' },
{
title: '操作类型',
field: 'businessType',
slots: {
default: ({ row }) => {
return renderDict(row.businessType, DictEnum.SYS_OPER_TYPE);
},
},
},
{ field: 'operName', title: '操作人员' },
{ field: 'operIp', title: 'IP地址' },
{ field: 'operLocation', title: 'IP信息' },
{
field: 'status',
title: '操作状态',
slots: {
default: ({ row }) => {
return renderDict(row.status, DictEnum.SYS_COMMON_STATUS);
},
},
},
{ field: 'operTime', title: '操作日期', sortable: true },
{
field: 'costTime',
title: '操作耗时',
sortable: true,
formatter({ cellValue }) {
return `${cellValue} ms`;
},
},
{
field: 'action',
fixed: 'right',
slots: { default: 'action' },
title: '操作',
width: 120,
},
];