-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpages.json
51 lines (51 loc) · 1.16 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
{
"easycom": {
"^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue",
"ff-(.*)": "@/components/ff-$1/ff-$1.vue" // 自定义组件
},
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "快起名"
}
},
{
"path": "pages/index/view",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "pages/user/index",
"style": {
"navigationBarTitleText": "我的"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "快起名",
"navigationBarBackgroundColor": "#FFFFFF",
"backgroundColor": "#FFFFFF"
},
"tabBar": {
"color": "#424242",
"selectedColor": "#2979ff",
"backgroundColor": "#FFFFFF",
"borderStyle": "white",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "/static/images/home_0.png",
"selectedIconPath": "/static/images/home_1.png",
"text": "首页"
},
{
"pagePath": "pages/user/index",
"iconPath": "/static/images/user_0.png",
"selectedIconPath": "/static/images/user_1.png",
"text": "我的"
}
]
}
}