We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7540a4e commit f474e06Copy full SHA for f474e06
src/api/infra/config/index.ts
@@ -12,13 +12,6 @@ export interface ConfigVO {
12
createTime: Date
13
}
14
15
-export interface ConfigPageReqVO extends PageParam {
16
- name?: string
17
- key?: string
18
- type?: number
19
- createTime?: Date[]
20
-}
21
-
22
export interface ConfigExportReqVO {
23
name?: string
24
key?: string
@@ -27,7 +20,7 @@ export interface ConfigExportReqVO {
27
28
29
// 查询参数列表
30
-export const getConfigPage = (params: ConfigPageReqVO) => {
+export const getConfigPage = (params: PageParam) => {
31
return request.get({ url: '/infra/config/page', params })
32
25
33
26
0 commit comments