-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpages.json
112 lines (105 loc) · 2.7 KB
/
pages.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"easycom": {
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
},
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/jd/jd",
"style": {
"navigationBarTitleText": "京东助手",
"navigationStyle": "custom"
}
},
{
"path": "pages/ql_panel/ql_panel",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
},
{
"path": "pages/jd/login/login",
"style": {
"navigationBarTitleText": "获取cookie",
"enablePullDownRefresh": false
}
}, {
"path": "pages/ql_panel/login/login",
"style": {
"navigationBarTitleText": "青龙面板登录",
"enablePullDownRefresh": false
}
}, {
"path": "pages/ql_panel/cron_log/cron_log",
"style": {
"navigationBarTitleText": "定时任务执行结果",
"enablePullDownRefresh": false
}
}, {
"path": "pages/ql_panel/env_detail/env_detail",
"style": {
"navigationBarTitleText": "环境变量详情",
"enablePullDownRefresh": false
}
}, {
"path": "pages/ql_panel/cron_detail/cron_detail",
"style": {
"navigationBarTitleText": "定时任务详情",
"enablePullDownRefresh": false
}
}, {
"path": "pages/ql_panel/config/config",
"style": {
"navigationBarTitleText": "青龙面板配置文件",
"enablePullDownRefresh": false
}
}, {
"path": "pages/about/about",
"style": {
"navigationBarTitleText": "关于",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/jd/setting/setting",
"style" :
{
"navigationBarTitleText": "CK管理",
"enablePullDownRefresh": false
}
}
],
"tabBar": {
"color": "#999999",
"selectedColor": "#000000",
"borderStyle": "black",
"backgroundColor": "#FFFFFF",
"iconWidth": "24px",
"list": [{
"pagePath": "pages/jd/jd",
"iconPath": "static/tabbar/consumption.png",
"selectedIconPath": "static/tabbar/consumption-fill.png",
"text": "京东"
},
{
"pagePath": "pages/ql_panel/ql_panel",
"iconPath": "static/tabbar/calendar.png",
"selectedIconPath": "static/tabbar/calendar-fill.png",
"text": "青龙"
},
{
"pagePath": "pages/about/about",
"iconPath": "static/tabbar/account.png",
"selectedIconPath": "static/tabbar/account-fill.png",
"text": "关于"
}
]
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "RC-TOOL",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
}
}