-
Notifications
You must be signed in to change notification settings - Fork 37
/
pages.json
69 lines (69 loc) · 1.76 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
{
"easycom": {
"^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
},
"pages": [{
"path": "pages/index/index",
"style": {
"navigationStyle": "custom"
}
}, {
"path": "pages/classifications/index",
"style": {
"navigationBarTitleText": "分类"
}
}, {
"path": "pages/shoppingCart/index",
"style": {
"navigationBarTitleText": "购物车"
}
}, {
"path": "pages/my/index",
"style": {
"navigationBarTitleText": "我的"
}
}, {
"path": "pages/my/address",
"style": {
"navigationBarTitleText": "收货地址"
}
}, {
"path": "pages/my/addSite",
"style": {
"navigationBarTitleText": "添加收货地址"
}
}],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "vue-mall-beautiful",
"navigationBarBackgroundColor": "#FFFFFF",
"backgroundColor": "#FFFFFF"
},
"tabBar": {
"color": "#909399",
"selectedColor": "#ff3131",
"backgroundColor": "#FFFFFF",
"borderStyle": "black",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "static/navs/index.png",
"selectedIconPath": "static/navs/index_select.png",
"text": "首页"
}, {
"pagePath": "pages/classifications/index",
"iconPath": "static/navs/classifications.png",
"selectedIconPath": "static/navs/classifications_select.png",
"text": "分类"
}, {
"pagePath": "pages/shoppingCart/index",
"iconPath": "static/navs/shoppingCart.png",
"selectedIconPath": "static/navs/shoppingCart_select.png",
"text": "购物车"
}, {
"pagePath": "pages/my/index",
"iconPath": "static/navs/my.png",
"selectedIconPath": "static/navs/my_select.png",
"text": "我的"
}]
}
}