refactor: loginlog vxe

This commit is contained in:
xingyu4j
2022-11-13 14:49:59 +08:00
parent 7250e23df3
commit 866247959e
4 changed files with 103 additions and 149 deletions

View File

@ -1,5 +1,17 @@
import request from '@/config/axios'
export interface LoginLogVO {
id: number
logType: number
traceId: number
userType: number
username: string
status: number
userIp: string
userAgent: string
createTime: string
}
// 查询登录日志列表
export const getLoginLogPageApi = (params) => {
return request.get({ url: '/system/login-log/page', params })

View File

@ -1,11 +0,0 @@
export type LoginLogVO = {
id: number
logType: number
traceId: number
userType: number
username: string
status: number
userIp: string
userAgent: string
createTime: string
}