refactor: operatelog
parent
4a692ed28c
commit
f09a1a4b8e
@ -1,10 +1,40 @@
|
|||||||
import request from '@/config/axios'
|
import request from '@/config/axios'
|
||||||
|
|
||||||
|
export type OperateLogVO = {
|
||||||
|
id: number
|
||||||
|
userNickname: string
|
||||||
|
traceId: string
|
||||||
|
userId: number
|
||||||
|
module: string
|
||||||
|
name: string
|
||||||
|
type: number
|
||||||
|
content: string
|
||||||
|
exts: object
|
||||||
|
requestMethod: string
|
||||||
|
requestUrl: string
|
||||||
|
userIp: string
|
||||||
|
userAgent: string
|
||||||
|
javaMethod: string
|
||||||
|
javaMethodArgs: string
|
||||||
|
startTime: string
|
||||||
|
duration: number
|
||||||
|
resultCode: number
|
||||||
|
resultMsg: string
|
||||||
|
resultData: string
|
||||||
|
}
|
||||||
|
export interface OperateLogPageReqVO extends BasePage {
|
||||||
|
module?: string
|
||||||
|
userNickname?: string
|
||||||
|
type?: number
|
||||||
|
success?: boolean
|
||||||
|
startTime?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
// 查询操作日志列表
|
// 查询操作日志列表
|
||||||
export const getOperateLogPageApi = (params) => {
|
export const getOperateLogPageApi = (params: OperateLogPageReqVO) => {
|
||||||
return request.get({ url: '/system/operate-log/page', params })
|
return request.get({ url: '/system/operate-log/page', params })
|
||||||
}
|
}
|
||||||
// 导出操作日志
|
// 导出操作日志
|
||||||
export const exportOperateLogApi = (params) => {
|
export const exportOperateLogApi = (params: OperateLogPageReqVO) => {
|
||||||
return request.download({ url: '/system/operate-log/export', params })
|
return request.download({ url: '/system/operate-log/export', params })
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,22 +0,0 @@
|
|||||||
export type OperateLogVO = {
|
|
||||||
id: number
|
|
||||||
userNickname: string
|
|
||||||
traceId: string
|
|
||||||
userId: number
|
|
||||||
module: string
|
|
||||||
name: string
|
|
||||||
type: number
|
|
||||||
content: string
|
|
||||||
exts: object
|
|
||||||
requestMethod: string
|
|
||||||
requestUrl: string
|
|
||||||
userIp: string
|
|
||||||
userAgent: string
|
|
||||||
javaMethod: string
|
|
||||||
javaMethodArgs: string
|
|
||||||
startTime: string
|
|
||||||
duration: number
|
|
||||||
resultCode: number
|
|
||||||
resultMsg: string
|
|
||||||
resultData: string
|
|
||||||
}
|
|
||||||
@ -1,113 +1,84 @@
|
|||||||
import { reactive } from 'vue'
|
import { reactive } from 'vue'
|
||||||
import { DICT_TYPE } from '@/utils/dict'
|
import { DICT_TYPE } from '@/utils/dict'
|
||||||
import { useI18n } from '@/hooks/web/useI18n'
|
import { VxeCrudSchema, useVxeCrudSchemas } from '@/hooks/web/useVxeCrudSchemas'
|
||||||
import { CrudSchema, useCrudSchemas } from '@/hooks/web/useCrudSchemas'
|
|
||||||
const { t } = useI18n() // 国际化
|
const crudSchemas = reactive<VxeCrudSchema>({
|
||||||
const crudSchemas = reactive<CrudSchema[]>([
|
primaryKey: 'id',
|
||||||
{
|
primaryType: 'seq',
|
||||||
label: t('common.index'),
|
action: true,
|
||||||
field: 'id',
|
actionWidth: '80px',
|
||||||
type: 'index',
|
columns: [
|
||||||
form: {
|
{
|
||||||
show: false
|
title: '操作模块',
|
||||||
}
|
field: 'module',
|
||||||
},
|
isSearch: true
|
||||||
{
|
},
|
||||||
label: '操作模块',
|
{
|
||||||
field: 'module',
|
title: '操作名',
|
||||||
search: {
|
field: 'name'
|
||||||
show: true
|
},
|
||||||
}
|
{
|
||||||
},
|
title: '操作类型',
|
||||||
{
|
field: 'type',
|
||||||
label: '操作名',
|
dictType: DICT_TYPE.SYSTEM_OPERATE_TYPE,
|
||||||
field: 'name'
|
isSearch: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '操作类型',
|
title: '请求方法名',
|
||||||
field: 'type',
|
field: 'requestMethod'
|
||||||
dictType: DICT_TYPE.SYSTEM_OPERATE_TYPE,
|
},
|
||||||
search: {
|
{
|
||||||
show: true
|
title: '请求地址',
|
||||||
}
|
field: 'requestUrl'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '请求方法名',
|
title: '操作人员',
|
||||||
field: 'requestMethod'
|
field: 'userNickname',
|
||||||
},
|
isSearch: true
|
||||||
{
|
},
|
||||||
label: '请求地址',
|
{
|
||||||
field: 'requestUrl'
|
title: '操作明细',
|
||||||
},
|
field: 'content',
|
||||||
{
|
isTable: false
|
||||||
label: '操作人员',
|
},
|
||||||
field: 'userNickname',
|
{
|
||||||
search: {
|
title: '用户 IP',
|
||||||
show: true
|
field: 'userIp',
|
||||||
}
|
isTable: false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '操作明细',
|
title: 'userAgent',
|
||||||
field: 'content',
|
field: 'userAgent'
|
||||||
table: {
|
},
|
||||||
show: false
|
{
|
||||||
}
|
title: '操作结果',
|
||||||
},
|
field: 'resultCode',
|
||||||
{
|
table: {
|
||||||
label: '用户 IP',
|
slots: {
|
||||||
field: 'userIp',
|
default: 'resultCode'
|
||||||
table: {
|
}
|
||||||
show: false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'userAgent',
|
|
||||||
field: 'userAgent'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '操作结果',
|
|
||||||
field: 'resultCode',
|
|
||||||
search: {
|
|
||||||
show: true,
|
|
||||||
component: 'Select',
|
|
||||||
componentProps: {
|
|
||||||
options: [
|
|
||||||
{ label: '成功', value: true },
|
|
||||||
{ label: '失败', value: false }
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '操作日期',
|
|
||||||
field: 'startTime',
|
|
||||||
form: {
|
|
||||||
show: false
|
|
||||||
},
|
},
|
||||||
search: {
|
{
|
||||||
show: true,
|
title: '操作日期',
|
||||||
component: 'DatePicker',
|
field: 'startTime',
|
||||||
componentProps: {
|
formatter: 'formatDate',
|
||||||
type: 'daterange',
|
isForm: false,
|
||||||
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
search: {
|
||||||
defaultTime: [new Date(2000, 1, 1, 0, 0, 0), new Date(2000, 2, 1, 23, 59, 59)]
|
itemRender: {
|
||||||
|
name: 'XDataTimePicker'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '执行时长',
|
|
||||||
field: 'duration'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: t('table.action'),
|
|
||||||
field: 'action',
|
|
||||||
width: '120px',
|
|
||||||
form: {
|
|
||||||
show: false
|
|
||||||
},
|
},
|
||||||
detail: {
|
{
|
||||||
show: false
|
title: '执行时长',
|
||||||
|
field: 'duration',
|
||||||
|
table: {
|
||||||
|
slots: {
|
||||||
|
default: 'duration'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
]
|
||||||
])
|
})
|
||||||
export const { allSchemas } = useCrudSchemas(crudSchemas)
|
export const { allSchemas } = useVxeCrudSchemas(crudSchemas)
|
||||||
|
|||||||
Loading…
Reference in New Issue