-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpages.json
52 lines (52 loc) · 1.41 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
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/home/index",
"style": {
"navigationStyle": "custom"
}
},
{
"path": "pages/work-bench/index",
"style": {
"navigationBarTitleText": "工作台"
}
},
{
"path": "pages/mine/index",
"style": {
// "navigationBarTitleText": "我的"
}
}
],
"globalStyle": { // 默认导航栏设置
"navigationBarTextStyle": "black",
"navigationBarTitleText": "柒的工具箱",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#fff",
"enablePullDownRefresh": true, // 是否开启下拉
"backgroundTextStyle": "dark" // 下拉样式 仅支持 dark / light
},
"tabBar": {
"color": "#e6e6e6",
"selectedColor": "#1296db",
"borderStyle": "black",
"backgroundColor": "#fff",
"list": [{
"pagePath": "pages/home/index",
"iconPath": "static/img/tabber/tabber_home_off.png",
"selectedIconPath": "static/img/tabber/tabber_home_on.png",
"text": "首页"
}, {
"pagePath": "pages/work-bench/index",
"iconPath": "static/img/tabber/tabber_work_off.png",
"selectedIconPath": "static/img/tabber/tabber_work_on.png",
"text": "工作台"
}, {
"pagePath": "pages/mine/index",
"iconPath": "static/img/tabber/tabber_mine_off.png",
"selectedIconPath": "static/img/tabber/tabber_mine_on.png",
"text": "我的"
}]
}
}