添加登录日志

This commit is contained in:
Jason
2023-01-17 16:21:15 +08:00
parent 20b7c760fd
commit 8481c63ef2
2 changed files with 86 additions and 0 deletions

View File

@@ -39,3 +39,8 @@ export function crontabEdit(params: any) {
export function crontabDel(params: any) {
return request.post({ url: '/crontab/del', params })
}
// 获取登录日志列表
export function loginLogLists(params: any) {
return request.get({ url: '/system/log/login', params })
}