|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
import { BasicColumn, FormSchema, useRender } from '@/components/Table' |
|
|
|
|
import { DICT_TYPE, getDictOptions } from '@/utils/dict' |
|
|
|
|
import { DescItem } from '@/components/Description/index' |
|
|
|
|
|
|
|
|
|
export const columns: BasicColumn[] = [ |
|
|
|
|
{ |
|
|
|
@ -10,7 +11,7 @@ export const columns: BasicColumn[] = [
|
|
|
|
|
{ |
|
|
|
|
title: '操作模块', |
|
|
|
|
dataIndex: 'module', |
|
|
|
|
width: 120 |
|
|
|
|
width: 200 |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '操作名', |
|
|
|
@ -20,7 +21,7 @@ export const columns: BasicColumn[] = [
|
|
|
|
|
{ |
|
|
|
|
title: '操作类型', |
|
|
|
|
dataIndex: 'type', |
|
|
|
|
width: 180, |
|
|
|
|
width: 120, |
|
|
|
|
customRender: ({ text }) => { |
|
|
|
|
return useRender.renderDict(text, DICT_TYPE.SYSTEM_OPERATE_TYPE) |
|
|
|
|
} |
|
|
|
@ -30,10 +31,14 @@ export const columns: BasicColumn[] = [
|
|
|
|
|
dataIndex: 'userNickname', |
|
|
|
|
width: 120 |
|
|
|
|
}, |
|
|
|
|
// {
|
|
|
|
|
// title: 'userAgent',
|
|
|
|
|
// dataIndex: 'userAgent',
|
|
|
|
|
// width: 400
|
|
|
|
|
// },
|
|
|
|
|
{ |
|
|
|
|
title: 'userAgent', |
|
|
|
|
dataIndex: 'userAgent', |
|
|
|
|
width: 400 |
|
|
|
|
title: '请求路径', |
|
|
|
|
dataIndex: 'requestUrl' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '操作结果', |
|
|
|
@ -44,19 +49,19 @@ export const columns: BasicColumn[] = [
|
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '操作日期', |
|
|
|
|
dataIndex: 'startTime', |
|
|
|
|
title: '执行时长', |
|
|
|
|
dataIndex: 'duration', |
|
|
|
|
width: 180, |
|
|
|
|
customRender: ({ text }) => { |
|
|
|
|
return useRender.renderDate(text) |
|
|
|
|
return useRender.renderText(text, 'ms') |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '执行时长', |
|
|
|
|
dataIndex: 'duration', |
|
|
|
|
title: '操作日期', |
|
|
|
|
dataIndex: 'startTime', |
|
|
|
|
width: 180, |
|
|
|
|
customRender: ({ text }) => { |
|
|
|
|
return useRender.renderText(text, 'ms') |
|
|
|
|
return useRender.renderDate(text) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
@ -102,3 +107,92 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
colProps: { span: 8 } |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
const httpMethods = [ |
|
|
|
|
{ value: 'GET', color: '#108ee9' }, |
|
|
|
|
{ value: 'POST', color: '#2db7f5' }, |
|
|
|
|
{ value: 'PUT', color: 'warning' }, |
|
|
|
|
{ value: 'DELETE', color: '#f50' } |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
export const infoSchema: DescItem[] = [ |
|
|
|
|
{ |
|
|
|
|
field: 'module', |
|
|
|
|
label: '操作模块' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'name', |
|
|
|
|
label: '操作名' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'userNickname', |
|
|
|
|
label: '操作人', |
|
|
|
|
render(_, data) { |
|
|
|
|
const { userNickname, userId } = data |
|
|
|
|
return useRender.renderText(userNickname, 'uid: ' + userId) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'resultCode', |
|
|
|
|
label: '请求结果', |
|
|
|
|
render(value) { |
|
|
|
|
return useRender.renderTag(value === 0 ? '成功' : '失败', value === 0 ? '#87d068' : '#f50') |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'resultMsg', |
|
|
|
|
label: '响应信息', |
|
|
|
|
show(data) { |
|
|
|
|
return data && data.resultMsg && data.resultMsg !== '' |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'userIp', |
|
|
|
|
label: '请求ip' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'startTime', |
|
|
|
|
label: '请求时间', |
|
|
|
|
render(value) { |
|
|
|
|
return useRender.renderDate(value) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'requestUrl', |
|
|
|
|
label: '请求路径' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'requestMethod', |
|
|
|
|
label: '请求方法', |
|
|
|
|
render(value) { |
|
|
|
|
const current = httpMethods.find((item) => item.value === value.toUpperCase()) |
|
|
|
|
if (current) { |
|
|
|
|
return useRender.renderTag(value, current.color) |
|
|
|
|
} |
|
|
|
|
return value |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'javaMethod', |
|
|
|
|
label: '操作方法', |
|
|
|
|
labelMinWidth: 80 |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'javaMethodArgs', |
|
|
|
|
label: '请求参数', |
|
|
|
|
render(value) { |
|
|
|
|
return useRender.renderJsonPreview(value) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'userAgent', |
|
|
|
|
label: 'userAgent' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
field: 'duration', |
|
|
|
|
label: '请求耗时', |
|
|
|
|
render(value) { |
|
|
|
|
return useRender.renderText(value, 'ms') |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|