|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "pages": [
- "pages/login/login",
- "pages/store/store",
- "pages/coupon/coupon",
- "pages/record/record",
- "pages/home/home"
- ],
- "permission": {
- "scope.userLocation": {
- "desc": "你的位置信息将用于小程序定位离你最近的门店"
- }
- },
- "window": {
- "backgroundTextStyle": "light",
- "navigationBarBackgroundColor": "#fff",
- "navigationBarTitleText": "老门框",
- "navigationBarTextStyle": "black"
- },
- "tabBar": {
- "color": "#666666",
- "selectedColor": "#eb6100",
- "backgroundColor": "#ffffff",
- "borderStyle": "black",
- "list": [
- {
- "pagePath": "pages/home/home",
- "text": "核销大厅",
- "iconPath": "static/tabBar/home0.png",
- "selectedIconPath": "static/tabBar/home1.png"
- },
- {
- "pagePath": "pages/store/store",
- "text": "门店查询",
- "iconPath": "static/tabBar/store0.png",
- "selectedIconPath": "static/tabBar/store1.png"
- },
- {
- "pagePath": "pages/record/record",
- "text": "核销记录",
- "iconPath": "static/tabBar/record0.png",
- "selectedIconPath": "static/tabBar/record1.png"
- }
- ]
- },
- "sitemapLocation": "sitemap.json"
- }
|