pages.json
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
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/shop/shop",
"style": {
"navigationBarTitleText": "美狸康产"
}
},
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "美狸康产"
}
},
{
"path": "pages/mine/mine",
"style": {
"navigationBarTitleText": "美狸康产"
}
}
],
"tabBar": {
"color": "#BDC4CE",
"selectedColor": "#EE8B27",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/shop/shop",
"iconPath": "static/shop.png",
"selectedIconPath": "static/shopindex.png",
"text": "商城"
},
{
"pagePath": "pages/mine/mine",
"iconPath": "static/mine.png",
"selectedIconPath": "static/mineindex.png",
"text": "我的"
}
]
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "美狸康产",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
}
}