完成验证码及登录功能

This commit is contained in:
橙子
2023-02-04 18:06:42 +08:00
parent cfd25b0a8d
commit b01d242cbc
276 changed files with 24201 additions and 22 deletions

View File

@@ -0,0 +1,27 @@
import request from '@/utils/request'
// 查询操作日志列表
export function list(query) {
return request({
url: '/operationLog/pageList',
method: 'get',
params: query
})
}
// 删除操作日志
export function delOperlog(operId) {
return request({
url: '/operationLog/delList',
method: 'delete',
data:"string"==typeof(operId)?[operId]:operId
})
}
// 清空操作日志
export function cleanOperlog() {
return request({
url: '/operationLog/clear',
method: 'delete'
})
}