-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpages.json
105 lines (103 loc) · 2.52 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
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/home/home",
"style": {
"navigationBarTitleText": "黑马商城"
}
},
{
"path": "pages/news/news",
"style": {
"navigationBarTitleText": "咨询列表"
}
},
{
"path": "pages/cart/cart",
"style": {
"navigationBarTitleText": "购物车"
}
},
{
"path": "pages/vip/vip",
"style": {
"navigationBarTitleText": "个人中心"
}
},
{
"path": "pages/goods/goods",
"style": {
"navigationBarTitleText": "商品列表",
"enablePullDownRefresh": true
}
},
{
"path": "pages/contact/contact",
"style": {
"navigationBarTitleText": "联系我们"
}
},
{
"path": "pages/pics/pics",
"style": {
"navigationBarTitleText": "社区图片"
}
},
{
"path": "pages/videos/videos",
"style": {
"navigationBarTitleText": "学习视频"
}
}
,{
"path" : "pages/news-detail/news-detail",
"style" :
{
"navigationBarTitleText": "咨询详情",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/goods-detail/goods-detail",
"style" :
{
"navigationBarTitleText": "商品详情",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "黑马商城",
"navigationBarBackgroundColor": "#b50e03",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
// "color": "#2b2b2b",
"selectedColor": "#b50e03",
"list": [
{
"iconPath": "static/tabbar/home.png",
"selectedIconPath": "static/tabbar/home-active.png",
"text": "首页",
"pagePath": "pages/home/home"
},{
"iconPath": "static/tabbar/news.png",
"selectedIconPath": "static/tabbar/news-active.png",
"text": "咨询",
"pagePath": "pages/news/news"
},{
"iconPath": "static/tabbar/cart.png",
"selectedIconPath": "static/tabbar/cart-active.png",
"text": "购物车",
"pagePath": "pages/cart/cart"
},{
"iconPath": "static/tabbar/vip.png",
"selectedIconPath": "static/tabbar/vip-active.png",
"text": "会员",
"pagePath": "pages/vip/vip"
}
]
},
"uniIdRouter": {}
}