refactor: operatelog

pull/2/head
xingyu4j 2022-11-13 15:38:31 +08:00
parent 4a692ed28c
commit f09a1a4b8e
8 changed files with 189 additions and 230 deletions

View File

@ -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 })
}

View File

@ -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
}

View File

@ -20,6 +20,7 @@ export type VxeCrudSchema = {
primaryType?: VxeColumnPropTypes.Type
// 是否开启操作栏插槽
action?: boolean
actionWidth?: string
columns: VxeCrudColumns[]
}
type VxeCrudColumns = Omit<VxeTableColumn, 'children'> & {
@ -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'
}

View File

@ -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',

View File

@ -9,6 +9,7 @@ const crudSchemas = reactive<VxeCrudSchema>({
primaryKey: 'id',
primaryType: 'seq',
action: true,
actionWidth: '80px',
columns: [
{
title: '日志类型',

View File

@ -1,61 +1,16 @@
<script setup lang="ts">
import dayjs from 'dayjs'
import { useTable } from '@/hooks/web/useTable'
import { allSchemas } from './operatelog.data'
import { DICT_TYPE } from '@/utils/dict'
import { useI18n } from '@/hooks/web/useI18n'
import type { OperateLogVO } from '@/api/system/operatelog/types'
import * as OperateLogApi from '@/api/system/operatelog'
import { ref } from 'vue'
const { t } = useI18n() //
// ========== ==========
const { register, tableObject, methods } = useTable<OperateLogVO>({
getListApi: OperateLogApi.getOperateLogPageApi,
exportListApi: OperateLogApi.exportOperateLogApi
})
// ========== ==========
const detailRef = ref() // Ref
const dialogVisible = ref(false) //
const dialogTitle = ref(t('action.detail')) //
const { getList, setSearchParams, exportList } = methods
//
const handleDetail = (row: OperateLogVO) => {
//
detailRef.value = row
dialogVisible.value = true
}
getList()
</script>
<template>
<ContentWrap>
<Search :schema="allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" />
</ContentWrap>
<ContentWrap>
<!-- 操作工具栏 -->
<div class="mb-10px">
<el-button
<!-- 列表 -->
<vxe-grid ref="xGrid" v-bind="gridOptions" class="xtable-scrollbar">
<!-- 操作新增 -->
<template #toolbar_buttons>
<XButton
type="warning"
preIcon="ep:download"
:title="t('action.export')"
v-hasPermi="['system:operate-log:export']"
:loading="tableObject.exportLoading"
@click="exportList('操作日志.xls')"
>
<Icon icon="ep:download" class="mr-5px" /> {{ t('action.export') }}
</el-button>
</div>
<Table
:columns="allSchemas.tableColumns"
:selection="false"
:data="tableObject.tableList"
:loading="tableObject.loading"
:pagination="{
total: tableObject.total
}"
v-model:pageSize="tableObject.pageSize"
v-model:currentPage="tableObject.currentPage"
@register="register"
>
<template #type="{ row }">
<DictTag :type="DICT_TYPE.SYSTEM_OPERATE_TYPE" :value="row.type" />
@click="handleExport()"
/>
</template>
<template #duration="{ row }">
<span>{{ row.duration + 'ms' }}</span>
@ -63,35 +18,68 @@ getList()
<template #resultCode="{ row }">
<span>{{ row.resultCode === 0 ? '成功' : '失败' }}</span>
</template>
<template #startTime="{ row }">
<span>{{ dayjs(row.startTime).format('YYYY-MM-DD HH:mm:ss') }}</span>
<template #actionbtns_default="{ row }">
<!-- 操作详情 -->
<XTextButton preIcon="ep:view" :title="t('action.detail')" @click="handleDetail(row)" />
</template>
<template #action="{ row }">
<el-button link type="primary" @click="handleDetail(row)">
<Icon icon="ep:view" class="mr-1px" /> {{ t('action.detail') }}
</el-button>
</template>
</Table>
</vxe-grid>
</ContentWrap>
<Dialog v-model="dialogVisible" :title="dialogTitle">
<!-- 弹窗 -->
<XModal id="postModel" v-model="dialogVisible" :title="dialogTitle">
<template #default>
<!-- 对话框(详情) -->
<Descriptions :schema="allSchemas.detailSchema" :data="detailRef">
<template #resultCode="{ row }">
<span>{{ row.resultCode === 0 ? '成功' : '失败' }}</span>
</template>
<template #type="{ row }">
<DictTag :type="DICT_TYPE.SYSTEM_OPERATE_TYPE" :value="row.type" />
</template>
<template #duration="{ row }">
<span>{{ row.duration + 'ms' }}</span>
</template>
<template #startTime="{ row }">
<span>{{ dayjs(row.startTime).format('YYYY-MM-DD HH:mm:ss') }}</span>
</template>
</Descriptions>
<!-- 操作按钮 -->
</template>
<template #footer>
<el-button @click="dialogVisible = false">{{ t('dialog.close') }}</el-button>
<!-- 按钮关闭 -->
<XButton :loading="actionLoading" :title="t('dialog.close')" @click="dialogVisible = false" />
</template>
</Dialog>
</XModal>
</template>
<script setup lang="ts">
// import
import { ref } from 'vue'
import { useI18n } from '@/hooks/web/useI18n'
import { useVxeGrid } from '@/hooks/web/useVxeGrid'
import { VxeGridInstance } from 'vxe-table'
// import
import * as OperateLogApi from '@/api/system/operatelog'
import { allSchemas } from './operatelog.data'
import download from '@/utils/download'
const { t } = useI18n() //
//
const xGrid = ref<VxeGridInstance>() // Grid Ref
const { gridOptions } = useVxeGrid<OperateLogApi.OperateLogVO>({
allSchemas: allSchemas,
getListApi: OperateLogApi.getOperateLogPageApi
})
//
const dialogVisible = ref(false) //
const dialogTitle = ref('edit') //
const actionLoading = ref(false) // Loading
const detailRef = ref() // Ref
//
const handleDetail = (row: OperateLogApi.OperateLogVO) => {
//
detailRef.value = row
dialogVisible.value = true
}
//
const handleExport = async () => {
const queryParams = Object.assign(
{},
JSON.parse(JSON.stringify(xGrid.value?.getRefMaps().refForm.value.data))
)
const res = await OperateLogApi.exportOperateLogApi(queryParams)
download.excel(res, '岗位列表.xls')
}
</script>

View File

@ -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<CrudSchema[]>([
import { VxeCrudSchema, useVxeCrudSchemas } from '@/hooks/web/useVxeCrudSchemas'
const crudSchemas = reactive<VxeCrudSchema>({
primaryKey: 'id',
primaryType: 'seq',
action: true,
actionWidth: '80px',
columns: [
{
label: t('common.index'),
field: 'id',
type: 'index',
form: {
show: false
}
},
{
label: '操作模块',
title: '操作模块',
field: 'module',
search: {
show: true
}
isSearch: true
},
{
label: '操作名',
title: '操作名',
field: 'name'
},
{
label: '操作类型',
title: '操作类型',
field: 'type',
dictType: DICT_TYPE.SYSTEM_OPERATE_TYPE,
search: {
show: true
}
isSearch: true
},
{
label: '请求方法名',
title: '请求方法名',
field: 'requestMethod'
},
{
label: '请求地址',
title: '请求地址',
field: 'requestUrl'
},
{
label: '操作人员',
title: '操作人员',
field: 'userNickname',
search: {
show: true
}
isSearch: true
},
{
label: '操作明细',
title: '操作明细',
field: 'content',
table: {
show: false
}
isTable: false
},
{
label: '用户 IP',
title: '用户 IP',
field: 'userIp',
table: {
show: false
}
isTable: false
},
{
label: 'userAgent',
title: 'userAgent',
field: 'userAgent'
},
{
label: '操作结果',
title: '操作结果',
field: 'resultCode',
search: {
show: true,
component: 'Select',
componentProps: {
options: [
{ label: '成功', value: true },
{ label: '失败', value: false }
]
table: {
slots: {
default: 'resultCode'
}
}
},
{
label: '操作日期',
title: '操作日期',
field: 'startTime',
form: {
show: false
},
formatter: 'formatDate',
isForm: 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)]
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)

View File

@ -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',