refactor: 重构操作日志drawer

This commit is contained in:
dap
2025-04-04 21:06:16 +08:00
parent 542407dcd6
commit aeed0fd48e
4 changed files with 76 additions and 122 deletions

View File

@@ -2,7 +2,7 @@ export interface OperationLog {
operId: string;
tenantId: string;
title: string;
businessType: number;
businessType: string;
businessTypes?: any;
method: string;
requestMethod: string;
@@ -14,7 +14,7 @@ export interface OperationLog {
operLocation: string;
operParam: string;
jsonResult: string;
status: number;
status: string;
errorMsg: string;
operTime: string;
costTime: number;