Finish log page

This commit is contained in:
2023-11-09 15:26:33 +08:00
parent 13c00b963d
commit cece8b2a83
5 changed files with 134 additions and 31 deletions

9
src/global.d.ts vendored
View File

@@ -161,11 +161,18 @@ interface PageParam {
sortOrder?: string
}
interface GetSysLogParams extends PageParam {
searchRequestUrl?: string
searchRegex?: boolean
searchStartTime?: string
searchEndTime?: string
}
interface TableParams {
pagination?: _TablePaginationConfig
sortField?: React.Key | readonly React.Key[]
sortOrder?: _SortOrder
filters?: Record<string, FilterVal | null>
filters?: Record<string, _FilterValue | null>
}
interface SysLogGetVo {