bug fix
This commit is contained in:
@ -1,29 +1,29 @@
|
||||
import request from '@/utils/request'
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 查询操作日志列表
|
||||
export function list(query) {
|
||||
return request({
|
||||
url: '/monitor/use-log/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
url: "/monitor/use-log/list",
|
||||
method: "get",
|
||||
params: query,
|
||||
});
|
||||
}
|
||||
|
||||
// 删除操作日志
|
||||
export function delOperlog(ids) {
|
||||
return request({
|
||||
url: '/monitor/use-log',
|
||||
method: 'delete',
|
||||
url: "/monitor/use-log",
|
||||
method: "delete",
|
||||
data: {
|
||||
ids: ids
|
||||
}
|
||||
})
|
||||
ids: ids,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
// 清空操作日志
|
||||
export function cleanOperlog() {
|
||||
return request({
|
||||
url: '/monitor/use-log/clean',
|
||||
method: 'delete'
|
||||
})
|
||||
url: "/monitor/use-log/clean",
|
||||
method: "delete",
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user