app.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/order/order",
  5. "pages/mine/mine",
  6. "pages/home/home",
  7. "pages/date/date",
  8. "pages/chooseCar/chooseCar",
  9. "pages/handlePeople/handlePeople",
  10. "pages/commonPeople/commonPeople",
  11. "pages/coupon/coupon",
  12. "pages/orderDetail/orderDetail",
  13. "pages/transportation/transportation",
  14. "pages/pay/pay",
  15. "pages/useDetail/useDetail",
  16. "pages/identity/identity",
  17. "pages/authenticate/authenticate"
  18. ],
  19. "window": {
  20. "navigationBarTextStyle": "black",
  21. "navigationBarTitleText": "",
  22. "navigationBarBackgroundColor": "#F8F8F8",
  23. "backgroundColor": "#F8F8F8"
  24. },
  25. "tabBar": {
  26. "color": "#616267",
  27. "selectedColor": "#FF8205",
  28. "borderStyle": "black",
  29. "backgroundColor": "#ffffff",
  30. "list": [
  31. {
  32. "pagePath": "pages/home/home",
  33. "iconPath": "/static/images/tabBar/home.png",
  34. "selectedIconPath": "/static/images/tabBar/home_selected.png",
  35. "text": "乘车"
  36. },
  37. {
  38. "pagePath": "pages/order/order",
  39. "iconPath": "/static/images/tabBar/order.png",
  40. "selectedIconPath": "/static/images/tabBar/order_selected.png",
  41. "text": "订单"
  42. },
  43. {
  44. "pagePath": "pages/mine/mine",
  45. "iconPath": "/static/images/tabBar/mine.png",
  46. "selectedIconPath": "/static/images/tabBar/mine_selected.png",
  47. "text": "我的"
  48. }
  49. ]
  50. },
  51. "usingComponents": {}
  52. }