2025-02-13 15:40:13 +08:00
|
|
|
import type {AuditLog } from '@/api/system/log/interface/log.ts'
|
|
|
|
|
import http from '@/api'
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @name 审计日志管理模块
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
//获取审计日志
|
|
|
|
|
export const getAuditLog = (params: AuditLog.ReqAuditLogParams) => {
|
|
|
|
|
return http.post(`/sysLog/list`, params)
|
|
|
|
|
}
|
2025-04-15 09:45:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
export const exportCsv = (params: AuditLog.ReqAuditLogParams) => {
|
|
|
|
|
return http.download(`/sysLog/exportCSV`, params)
|
|
|
|
|
}
|