app.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "pages": [
  3. "pages/login/login",
  4. "pages/login/reg",
  5. "pages/tabBar/ship/ship",
  6. "pages/tabBar/ship/ship_refresh",
  7. "pages/tabBar/history/history",
  8. "pages/tabBar/my/my",
  9. "pages/tabBar/ship/detail/detail",
  10. "pages/tabBar/history/detail/detail",
  11. "pages/tabBar/my/detail/detail",
  12. "pages/index/index",
  13. "pages/sample/richAlert"
  14. ],
  15. "subPackages": [],
  16. "window": {
  17. "pageOrientation": "portrait",
  18. "navigationBarTitleText": "天路通",
  19. "navigationBarTextStyle": "white",
  20. "navigationBarBackgroundColor": "#007AFF",
  21. "backgroundColor": "#F8F8F8",
  22. "backgroundColorTop": "#F4F5F6",
  23. "backgroundColorBottom": "#F4F5F6"
  24. },
  25. "tabBar": {
  26. "color": "#7A7E83",
  27. "selectedColor": "#007AFF",
  28. "borderStyle": "black",
  29. "backgroundColor": "#F8F8F8",
  30. "list": [
  31. {
  32. "pagePath": "pages/tabBar/ship/ship",
  33. "iconPath": "static/ship.png",
  34. "selectedIconPath": "static/shipHL.png",
  35. "text": "货运"
  36. },
  37. {
  38. "pagePath": "pages/tabBar/history/history",
  39. "iconPath": "static/history.png",
  40. "selectedIconPath": "static/historyHL.png",
  41. "text": "历史"
  42. },
  43. {
  44. "pagePath": "pages/tabBar/my/my",
  45. "iconPath": "static/my.png",
  46. "selectedIconPath": "static/myHL.png",
  47. "text": "我的"
  48. }
  49. ]
  50. },
  51. "usingComponents": {}
  52. }