import { http } from "@/utils/http"; export interface OperationLogsQuery extends BasePageQuery { businessType?: string; requestModule?: string; status?: string; username?: string; } export interface OperationLogDTO { businessType?: number; businessTypeStr?: string; calledMethod?: string; errorStack?: string; operationId?: number; operationParam?: string; operationResult?: string; operationTime?: Date; operatorIp?: string; operatorLocation?: string; operatorType?: number; operatorTypeStr?: string; requestMethod?: string; requestModule?: string; requestUrl?: string; status?: number; statusStr?: string; userId?: number; username?: string; } /** 获取操作日志列表 */ export const getOperationLogListApi = (params?: OperationLogsQuery) => { return http.request>>( "get", "/logs/operationLogs", { params } ); }; export const exportOperationLogExcelApi = ( params: OperationLogsQuery, fileName: string ) => { return http.download("/logs/operationLogs/excel", fileName, { params }); }; export const deleteOperationLogApi = (data: Array) => { return http.request>("delete", "/logs/operationLogs", { params: { // 需要将数组转换为字符串 否则Axios会将参数变成 noticeIds[0]:1 noticeIds[1]:2 这种格式,后端接收参数不成功 operationIds: data.toString() } }); }; /** 登录日志查询类 */ export interface LoginLogQuery extends BasePageQuery { beginTime?: string; endTime?: string; ipAddress?: string; status?: string; username?: string; } /** * 登录日志信息 */ export interface LoginLogsDTO { browser?: string; infoId?: string; ipAddress?: string; loginLocation?: string; loginTime?: Date; msg?: string; operationSystem?: string; /** TODO 这个登录状态的设计很奇怪 需要重构掉 */ status?: number; statusStr?: string; username?: string; } /** 获取操作日志列表 */ export const getLoginLogListApi = (params?: LoginLogQuery) => { return http.request>>( "get", "/logs/loginLogs", { params } ); }; export const exportLoginLogExcelApi = ( params: LoginLogQuery, fileName: string ) => { return http.download("/logs/loginLogs/excel", fileName, { params }); }; export const deleteLoginLogApi = (data: Array) => { return http.request>("delete", "/logs/loginLogs", { params: { // 需要将数组转换为字符串 否则Axios会将参数变成 noticeIds[0]:1 noticeIds[1]:2 这种格式,后端接收参数不成功 ids: data.toString() } }); };