-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpages.json
144 lines (137 loc) · 3.62 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"easycom": {
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
},
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationStyle": "custom", // 隐藏系统导航栏
"navigationBarTextStyle": "white", // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
"navigationBarTitleText": "uni-app"
}
}, {
"path": "pages/categories/categories",
"style": {
"navigationStyle": "custom", // 隐藏系统导航栏
"navigationBarTitleText": "分类",
"enablePullDownRefresh": false
}
}, {
"path": "pages/cart/cart",
"style": {
"navigationStyle": "custom", // 隐藏系统导航栏
"navigationBarTitleText": "购物车",
"enablePullDownRefresh": false
}
}, {
"path": "pages/my/my",
"style": {
"navigationStyle": "custom", // 隐藏系统导航栏
"navigationBarTitleText": "我的",
"enablePullDownRefresh": false
}
}, {
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "登陆页",
"enablePullDownRefresh": false
}
}, {
"path": "pages/homeItem/homeItem",
"style": {
"navigationStyle": "custom", // 隐藏系统导航栏
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#2c2c2c",
"selectedColor": "#d81e06",
"borderStyle": "white",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "static/images/tabbar/home.png",
"selectedIconPath": "static/images/tabbar/home-selected.png",
"text": "首页"
}, {
"pagePath": "pages/categories/categories",
"iconPath": "static/images/tabbar/categories.png",
"selectedIconPath": "static/images/tabbar/categories-selected.png",
"text": "分类"
},
{
"pagePath": "pages/cart/cart",
"iconPath": "static/images/tabbar/cart.png",
"selectedIconPath": "static/images/tabbar/cart-selected.png",
"text": "购物车"
},
{
"pagePath": "pages/my/my",
"iconPath": "static/images/tabbar/my.png",
"selectedIconPath": "static/images/tabbar/my-selected.png",
"text": "我的"
}
]
},
"subPackages": [{
"root": "pagesLocation",
"pages": [{
"path": "myPickUpLocation/myPickUpLocation",
"style": {
"navigationBarTitleText": "我的提货点",
"enablePullDownRefresh": false
}
}, {
"path": "choosePickUpLocation/choosePickUpLocation",
"style": {
"navigationBarTitleText": "选择其它提货点",
"enablePullDownRefresh": false
}
}]
},
{
"root": "pagesOrder",
"pages": [{
"path": "confirmOrder/confirmOrder",
"style": {
"navigationBarTitleText": "确认订单",
"enablePullDownRefresh": false,
"navigationStyle": "custom" // 隐藏系统导航栏
}
}, {
"path": "getOrderInfo/getOrderInfo",
"style": {
"navigationBarTitleText": "确认支付",
"enablePullDownRefresh": false,
"navigationStyle": "custom" // 隐藏系统导航栏
}
}, {
"path": "orderList/orderList",
"style": {
"navigationBarTitleText": "订单列表",
"enablePullDownRefresh": false
}
}]
},
{
"root": "pagesSeckill",
"pages": [{
"path": "seckill/seckill",
"style": {
"navigationBarTitleText": "限时秒杀",
"enablePullDownRefresh": false,
"navigationStyle": "custom" // 隐藏系统导航栏
}
}]
}
]
}