app.ts
1.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// 单个应用类型
export interface appType {
id: number,
title: string,
popupContent: string,
image: string,
description: string,
type: number,
isPopup: string,
isRecommend: string,
typeIds: number | number[]
types: Types[]
}
// 单个应用详情
export interface appDetail {
id: number
title: string
content: string
popupContent?: string
image: string
description: string
type?: number
isPopup?: string
link: string
isRecommend?: string
types: Types[]
}
export interface Types{
id: number,
label: string,
icon?: string,
alias?: string,
disabled?: boolean,
children: Array<Types>
}
// 查询应用参数类型
export interface queryParams {
pageNum: number
pageSize: number
typeIds?: number | number[]
typeAlias?: string
title?: string
isPopup?: string
isRecommend?: string
}
// 返回所有应用
export interface appListType {
alias: string
appVos: appType[]
disabled: boolean
icon: string
id: number
label: string
sort: number
children: Array<appListType>
}