mirror of
https://github.com/continew-org/continew-admin-ui.git
synced 2025-10-01 14:57:11 +08:00
fix:导出加载条显示异常,下载参数
This commit is contained in:
@@ -4,7 +4,7 @@ import type * as System from './type'
|
||||
const BASE_URL = '/system/log'
|
||||
|
||||
/** @desc 查询日志列表 */
|
||||
export function listLog(query: System.LogQuery) {
|
||||
export function listLog(query: System.PageLogQuery) {
|
||||
return http.get<PageRes<System.LogResp[]>>(`${BASE_URL}`, query)
|
||||
}
|
||||
|
||||
|
@@ -44,7 +44,10 @@ export interface LogDetailResp extends LogResp {
|
||||
responseHeaders: string
|
||||
responseBody: string
|
||||
}
|
||||
export interface LogQuery extends PageQuery {
|
||||
// 系统日志分页查询条件
|
||||
export interface PageLogQuery extends PageQuery,LogQuery{}
|
||||
// 系统日志查询条件
|
||||
export interface LogQuery{
|
||||
description?: string
|
||||
module?: string
|
||||
ip?: string
|
||||
|
Reference in New Issue
Block a user