1234567891011121314151617181920212223242526272829 |
- 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 interface LoginLogReqVO extends PageParam {
- userIp?: string
- username?: string
- status?: boolean
- createTime?: string[]
- }
- // 查询登录日志列表
- export const getLoginLogPageApi = (params: LoginLogReqVO) => {
- return request.get({ url: '/system/login-log/page', params })
- }
- // 导出登录日志
- export const exportLoginLogApi = (params: LoginLogReqVO) => {
- return request.download({ url: '/system/login-log/export', params })
- }
|