forked from yg10323/uniapp-order
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pages.json
137 lines (135 loc) · 2.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
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
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
// tabbar页面
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "外卖猫"
}
},
{
"path": "pages/order/index",
"style": {
"navigationBarTitleText": "我的订单"
}
},
{
"path": "pages/profile/index",
"style": {
"navigationBarTitleText": "个人中心",
// 下拉刷新
"enablePullDownRefresh": false
}
},
// 单页面
{
"path": "pages/profile/web/login",
"style": {
"navigationBarTitleText": "登录"
}
},
{
"path": "pages/profile/web/address",
"style": {
"navigationBarTitleText": "收货信息"
}
},
{
"path": "pages/profile/web/comment",
"style": {
"navigationBarTitleText": "我的评价"
}
},
{
"path": "pages/profile/web/feedback",
"style": {
"navigationBarTitleText": "客服中心"
}
},
{
"path": "pages/profile/web/help",
"style": {
"navigationBarTitleText": "帮助中心"
}
},
{
"path": "pages/profile/web/editAddress",
"style": {
"navigationBarTitleText": "编辑收货地址"
}
},
{
"path": "pages/index/web/opList",
"style": {
"navigationBarTitleText": "店铺分类"
}
},
{
"path": "pages/shop/index",
"style": {
"navigationBarTitleText": "店铺"
}
},
{
"path": "pages/order/web/createOrder",
"style": {
"navigationBarTitleText": "创建订单"
}
},
{
"path": "pages/order/web/payment",
"style": {
"navigationBarTitleText": "付款"
}
},
{
"path": "pages/order/web/orderDetail",
"style": {
"navigationBarTitleText": "详情"
}
},
{
"path": "pages/order/web/cartOrder",
"style": {
"navigationBarTitleText": "购物车结算"
}
},
{
"path": "pages/order/web/evaluate",
"style": {
"navigationBarTitleText": "订单评价"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "外卖猫",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8",
"app-plus": {
"scrollIndicator": "none" //全局 在APP页面都不显示滚动条
}
},
"tabBar": {
"selectedColor": "#DD524D",
"list": [{
"text": "首页",
"pagePath": "pages/index/index",
"iconPath": "static/img/tabbar/home.png",
"selectedIconPath": "static/img/tabbar/home-active.png"
},
{
"text": "订单",
"pagePath": "pages/order/index",
"iconPath": "static/img/tabbar/cart.png",
"selectedIconPath": "static/img/tabbar/cart-active.png"
},
{
"text": "我的",
"pagePath": "pages/profile/index",
"iconPath": "static/img/tabbar/member.png",
"selectedIconPath": "static/img/tabbar/member-active.png"
}
]
}
}