This commit is contained in:
‘937886381’
2025-11-12 16:56:14 +08:00
commit 1ea62af1d6
1135 changed files with 109385 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import request from '@/utils/request'
// 查询登录日志列表
export function list(query) {
return request({
url: '/system/login-log/page',
method: 'get',
params: query
})
}
// 导出登录日志
export function exportLoginLog(query) {
return request({
url: '/system/login-log/export-excel',
method: 'get',
params: query,
responseType: 'blob'
})
}