Commit 2d5a76fa by jianan

操作日志1

parent 53d4357f
import request from '@/utils/request'
// 审计日志分页查询
export function getAuditLogPage(data) {
return request({
url: '/csf/api/auditlog/log/page',
method: 'post',
data
})
}
// 审计详情查询
export function getAuditLogDetail(requestId) {
return request({
url: '/csf/api/auditlog/log/detail?requestId=' + requestId,
method: 'get'
})
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment