diff --git a/yudao-ui-admin-vue3/src/api/system/operatelog/index.ts b/yudao-ui-admin-vue3/src/api/system/operatelog/index.ts index bf990bb36..313fcd8d1 100644 --- a/yudao-ui-admin-vue3/src/api/system/operatelog/index.ts +++ b/yudao-ui-admin-vue3/src/api/system/operatelog/index.ts @@ -1,10 +1,40 @@ 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 }) } // 导出操作日志 -export const exportOperateLogApi = (params) => { +export const exportOperateLogApi = (params: OperateLogPageReqVO) => { return request.download({ url: '/system/operate-log/export', params }) } diff --git a/yudao-ui-admin-vue3/src/api/system/operatelog/types.ts b/yudao-ui-admin-vue3/src/api/system/operatelog/types.ts deleted file mode 100644 index 896d15df4..000000000 --- a/yudao-ui-admin-vue3/src/api/system/operatelog/types.ts +++ /dev/null @@ -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 -} diff --git a/yudao-ui-admin-vue3/src/hooks/web/useVxeCrudSchemas.ts b/yudao-ui-admin-vue3/src/hooks/web/useVxeCrudSchemas.ts index 96bfad64e..f439b7798 100644 --- a/yudao-ui-admin-vue3/src/hooks/web/useVxeCrudSchemas.ts +++ b/yudao-ui-admin-vue3/src/hooks/web/useVxeCrudSchemas.ts @@ -20,6 +20,7 @@ export type VxeCrudSchema = { primaryType?: VxeColumnPropTypes.Type // 是否开启操作栏插槽 action?: boolean + actionWidth?: string columns: VxeCrudColumns[] } type VxeCrudColumns = Omit & { @@ -204,7 +205,7 @@ const filterTableSchema = (crudSchema: VxeCrudSchema): VxeGridPropTypes.Columns const tableSchemaItem = { title: t('table.action'), field: 'actionbtns', - width: '240px', + width: crudSchema.actionWidth ? crudSchema.actionWidth : '240px', slots: { default: 'actionbtns_default' } diff --git a/yudao-ui-admin-vue3/src/views/system/dept/index.vue b/yudao-ui-admin-vue3/src/views/system/dept/index.vue index 43c356bda..54e494a19 100644 --- a/yudao-ui-admin-vue3/src/views/system/dept/index.vue +++ b/yudao-ui-admin-vue3/src/views/system/dept/index.vue @@ -10,11 +10,6 @@ import { DeptVO } from '@/api/system/dept/types' import { useMessage } from '@/hooks/web/useMessage' import { getListSimpleUsersApi } from '@/api/system/user' const message = useMessage() -interface Tree { - id: number - name: string - children?: Tree[] -} const defaultProps = { children: 'children', diff --git a/yudao-ui-admin-vue3/src/views/system/loginlog/loginLog.data.ts b/yudao-ui-admin-vue3/src/views/system/loginlog/loginLog.data.ts index a0c1c9970..c08af0735 100644 --- a/yudao-ui-admin-vue3/src/views/system/loginlog/loginLog.data.ts +++ b/yudao-ui-admin-vue3/src/views/system/loginlog/loginLog.data.ts @@ -9,6 +9,7 @@ const crudSchemas = reactive({ primaryKey: 'id', primaryType: 'seq', action: true, + actionWidth: '80px', columns: [ { title: '日志类型', diff --git a/yudao-ui-admin-vue3/src/views/system/operatelog/index.vue b/yudao-ui-admin-vue3/src/views/system/operatelog/index.vue index b190674ba..a9443673a 100644 --- a/yudao-ui-admin-vue3/src/views/system/operatelog/index.vue +++ b/yudao-ui-admin-vue3/src/views/system/operatelog/index.vue @@ -1,97 +1,85 @@ + - diff --git a/yudao-ui-admin-vue3/src/views/system/operatelog/operatelog.data.ts b/yudao-ui-admin-vue3/src/views/system/operatelog/operatelog.data.ts index 32188b10e..b359b1446 100644 --- a/yudao-ui-admin-vue3/src/views/system/operatelog/operatelog.data.ts +++ b/yudao-ui-admin-vue3/src/views/system/operatelog/operatelog.data.ts @@ -1,113 +1,84 @@ import { reactive } from 'vue' import { DICT_TYPE } from '@/utils/dict' -import { useI18n } from '@/hooks/web/useI18n' -import { CrudSchema, useCrudSchemas } from '@/hooks/web/useCrudSchemas' -const { t } = useI18n() // 国际化 -const crudSchemas = reactive([ - { - label: t('common.index'), - field: 'id', - type: 'index', - form: { - show: false - } - }, - { - label: '操作模块', - field: 'module', - search: { - show: true - } - }, - { - label: '操作名', - field: 'name' - }, - { - label: '操作类型', - field: 'type', - dictType: DICT_TYPE.SYSTEM_OPERATE_TYPE, - search: { - show: true - } - }, - { - label: '请求方法名', - field: 'requestMethod' - }, - { - label: '请求地址', - field: 'requestUrl' - }, - { - label: '操作人员', - field: 'userNickname', - search: { - show: true - } - }, - { - label: '操作明细', - field: 'content', - table: { - show: false - } - }, - { - label: '用户 IP', - field: 'userIp', - table: { - show: false - } - }, - { - label: 'userAgent', - field: 'userAgent' - }, - { - label: '操作结果', - field: 'resultCode', - search: { - show: true, - component: 'Select', - componentProps: { - options: [ - { label: '成功', value: true }, - { label: '失败', value: false } - ] +import { VxeCrudSchema, useVxeCrudSchemas } from '@/hooks/web/useVxeCrudSchemas' + +const crudSchemas = reactive({ + primaryKey: 'id', + primaryType: 'seq', + action: true, + actionWidth: '80px', + columns: [ + { + title: '操作模块', + field: 'module', + isSearch: true + }, + { + title: '操作名', + field: 'name' + }, + { + title: '操作类型', + field: 'type', + dictType: DICT_TYPE.SYSTEM_OPERATE_TYPE, + isSearch: true + }, + { + title: '请求方法名', + field: 'requestMethod' + }, + { + title: '请求地址', + field: 'requestUrl' + }, + { + title: '操作人员', + field: 'userNickname', + isSearch: true + }, + { + title: '操作明细', + field: 'content', + isTable: false + }, + { + title: '用户 IP', + field: 'userIp', + isTable: false + }, + { + title: 'userAgent', + field: 'userAgent' + }, + { + title: '操作结果', + field: 'resultCode', + table: { + slots: { + default: 'resultCode' + } + } + }, + { + title: '操作日期', + field: 'startTime', + formatter: 'formatDate', + isForm: false, + search: { + itemRender: { + name: 'XDataTimePicker' + } + } + }, + { + title: '执行时长', + field: 'duration', + table: { + slots: { + default: 'duration' + } } } - }, - { - label: '操作日期', - field: 'startTime', - form: { - show: false - }, - search: { - show: true, - component: 'DatePicker', - componentProps: { - type: 'daterange', - valueFormat: 'YYYY-MM-DD HH:mm:ss', - defaultTime: [new Date(2000, 1, 1, 0, 0, 0), new Date(2000, 2, 1, 23, 59, 59)] - } - } - }, - { - label: '执行时长', - field: 'duration' - }, - { - label: t('table.action'), - field: 'action', - width: '120px', - form: { - show: false - }, - detail: { - show: false - } - } -]) -export const { allSchemas } = useCrudSchemas(crudSchemas) + ] +}) +export const { allSchemas } = useVxeCrudSchemas(crudSchemas) diff --git a/yudao-ui-admin-vue3/src/views/system/user/index.vue b/yudao-ui-admin-vue3/src/views/system/user/index.vue index c907232eb..fbfe7b542 100644 --- a/yudao-ui-admin-vue3/src/views/system/user/index.vue +++ b/yudao-ui-admin-vue3/src/views/system/user/index.vue @@ -39,11 +39,6 @@ import { getAccessToken, getTenantId } from '@/utils/auth' import { useMessage } from '@/hooks/web/useMessage' const message = useMessage() -interface Tree { - id: number - name: string - children?: Tree[] -} const defaultProps = { children: 'children',