app.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "pages": [
  3. "pages/order/create",
  4. "pages/gasup/index",
  5. "pages/logs/logs",
  6. "pages/orders/myorder",
  7. "pages/order/confirm",
  8. "pages/order/success"
  9. ],
  10. "permission": {
  11. "scope.userLocation": {
  12. "desc": "您的位置信息将用于小程序位置接口的效果展示"
  13. }
  14. },
  15. "window": {
  16. "backgroundTextStyle": "light",
  17. "navigationBarBackgroundColor": "#12A273",
  18. "navigationBarTitleText": "油站列表",
  19. "navigationBarTextStyle": "white",
  20. "backgroundColor": "#eeeeee"
  21. },
  22. "tabBar": {
  23. "color": "#999",
  24. "backgroundColor": "#fafafa",
  25. "selectedColor": "#333",
  26. "borderStyle": "white",
  27. "list": [
  28. {
  29. "text": "油站",
  30. "pagePath": "pages/gasup/index",
  31. "iconPath": "static/tabs/home.png",
  32. "selectedIconPath": "static/tabs/home-active.png"
  33. },
  34. {
  35. "text": "订单",
  36. "pagePath": "pages/orders/myorder",
  37. "iconPath": "static/tabs/orders.png",
  38. "selectedIconPath": "static/tabs/orders-active.png"
  39. }
  40. ],
  41. "position": "bottom"
  42. },
  43. "sitemapLocation": "sitemap.json"
  44. }