pages.json
3.89 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"pages": [
{
"path": "pages/home/home",
"style": { "navigationStyle": "custom" }
},
{
"path": "pages/booking/booking",
"style": { "navigationStyle": "custom" }
},
{
"path": "pages/mall/mall",
"style": { "navigationStyle": "custom", "enablePullDownRefresh": true }
},
{
"path": "pages/my/my",
"style": { "navigationStyle": "custom" }
},
{
"path": "pages/login/login",
"style": { "navigationStyle": "custom" }
}
],
"subPackages": [
{
"root": "pagesA",
"name": "sub-pages",
"pages": [
{
"path": "store-list/store-list",
"style": { "navigationBarTitleText": "门店列表" }
},
{
"path": "store-detail/store-detail",
"style": { "navigationBarTitleText": "门店详情" }
},
{
"path": "activity-detail/activity-detail",
"style": { "navigationBarTitleText": "活动详情" }
},
{
"path": "notification-list/notification-list",
"style": { "navigationBarTitleText": "消息通知" }
},
{
"path": "booking-record/booking-record",
"style": { "navigationBarTitleText": "预约记录" }
},
{
"path": "booking-detail/booking-detail",
"style": { "navigationBarTitleText": "预约详情" }
},
{
"path": "technician-detail/technician-detail",
"style": { "navigationBarTitleText": "技师详情" }
},
{
"path": "product-detail/product-detail",
"style": { "navigationBarTitleText": "商品详情" }
},
{
"path": "cart/cart",
"style": { "navigationBarTitleText": "购物车" }
},
{
"path": "order-list/order-list",
"style": { "navigationBarTitleText": "我的订单" }
},
{
"path": "search-result/search-result",
"style": { "navigationBarTitleText": "搜索结果" }
},
{
"path": "profile-edit/profile-edit",
"style": { "navigationBarTitleText": "个人资料" }
},
{
"path": "address-list/address-list",
"style": { "navigationBarTitleText": "地址管理" }
},
{
"path": "settings/settings",
"style": { "navigationBarTitleText": "设置" }
},
{
"path": "about/about",
"style": { "navigationBarTitleText": "关于我们" }
}
]
},
{
"root": "pagesB",
"name": "deep-pages",
"pages": [
{
"path": "order-detail/order-detail",
"style": { "navigationBarTitleText": "订单详情" }
},
{
"path": "pay-result/pay-result",
"style": { "navigationBarTitleText": "支付结果" }
},
{
"path": "review/review",
"style": { "navigationBarTitleText": "评价" }
},
{
"path": "address-edit/address-edit",
"style": { "navigationBarTitleText": "编辑地址" }
},
{
"path": "booking-success/booking-success",
"style": { "navigationBarTitleText": "预约成功" }
}
]
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "绿纤会员",
"navigationBarBackgroundColor": "#F8FBFA",
"backgroundColor": "#F4F7F5"
},
"tabBar": {
"color": "#999999",
"selectedColor": "#2DB48D",
"borderStyle": "white",
"backgroundColor": "#FCFDFC",
"fontSize": "11px",
"iconWidth": "24px",
"spacing": "2px",
"height": "58px",
"list": [
{
"pagePath": "pages/home/home",
"text": "首页",
"iconPath": "static/tabbar/home.png",
"selectedIconPath": "static/tabbar/home-active.png"
},
{
"pagePath": "pages/booking/booking",
"text": "预约",
"iconPath": "static/tabbar/booking.png",
"selectedIconPath": "static/tabbar/booking-active.png"
},
{
"pagePath": "pages/mall/mall",
"text": "商城",
"iconPath": "static/tabbar/mall.png",
"selectedIconPath": "static/tabbar/mall-active.png"
},
{
"pagePath": "pages/my/my",
"text": "我的",
"iconPath": "static/tabbar/my.png",
"selectedIconPath": "static/tabbar/my-active.png"
}
]
},
"uniIdRouter": {}
}