1c3f8b39a3
Co-authored-by: gin <gin-18@qq.com> Co-authored-by: gin <dengxinmin@owlscm.com> Reviewed-on: #1
115 lines
2.7 KiB
TypeScript
115 lines
2.7 KiB
TypeScript
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<ResponseData<PageDTO<OperationLogDTO>>>(
|
|
"get",
|
|
"/logs/operationLogs",
|
|
{
|
|
params
|
|
}
|
|
);
|
|
};
|
|
|
|
export const exportOperationLogExcelApi = (
|
|
params: OperationLogsQuery,
|
|
fileName: string
|
|
) => {
|
|
return http.download("/logs/operationLogs/excel", fileName, {
|
|
params
|
|
});
|
|
};
|
|
|
|
export const deleteOperationLogApi = (data: Array<number>) => {
|
|
return http.request<ResponseData<void>>("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<ResponseData<PageDTO<LoginLogsDTO>>>(
|
|
"get",
|
|
"/logs/loginLogs",
|
|
{
|
|
params
|
|
}
|
|
);
|
|
};
|
|
|
|
export const exportLoginLogExcelApi = (
|
|
params: LoginLogQuery,
|
|
fileName: string
|
|
) => {
|
|
return http.download("/logs/loginLogs/excel", fileName, {
|
|
params
|
|
});
|
|
};
|
|
|
|
export const deleteLoginLogApi = (data: Array<number>) => {
|
|
return http.request<ResponseData<void>>("delete", "/logs/loginLogs", {
|
|
params: {
|
|
// 需要将数组转换为字符串 否则Axios会将参数变成 noticeIds[0]:1 noticeIds[1]:2 这种格式,后端接收参数不成功
|
|
ids: data.toString()
|
|
}
|
|
});
|
|
};
|