app.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/voyages/voyages",
  5. "pages/me/me",
  6. "pages/login/login",
  7. "pages/voyages/detail/detail",
  8. "pages/voyageManage/voyageManage",
  9. "pages/shipOwnerManage/shipOwnerList/shipOwnerList",
  10. "pages/shipOwnerManage/addShipOnwer/addShipOnwer",
  11. "pages/financialManage/financialManage",
  12. "pages/share/share",
  13. "pages/sharePage/sharePage",
  14. "pages/voyageManage/createVoyage/createVoyage",
  15. "pages/voyageManage/myBills/myBills",
  16. "pages/voyageManage/takeBill/takeBill",
  17. "pages/voyageManage/myBills/examine/examine",
  18. "pages/voyageManage/myDaily/myDaily",
  19. "pages/voyageManage/myDaily/examine/examine",
  20. "pages/voyages/uploadCarLoadRecord/uploadCarLoadRecord",
  21. "pages/voyages/uploadDischarge/uploadDischarge",
  22. "pages/index/declarePort/voyageList",
  23. "pages/index/weather/weatherList",
  24. "pages/index/declarePort/detail",
  25. "pages/index/security/security",
  26. "pages/voyageManage/myBills/myLab/myLab",
  27. "pages/voyageManage/myBills/labDetail/labDetail",
  28. "pages/voyageManage/dailyVoyageList/dailyVoyageList",
  29. "pages/voyageManage/billVoyageList/billVoyageList"
  30. ],
  31. "window": {
  32. "backgroundColor": "#F6F6F6",
  33. "backgroundTextStyle": "light",
  34. "navigationBarBackgroundColor": "#F6F6F6",
  35. "navigationBarTitleText": "汇很多",
  36. "navigationBarTextStyle": "black"
  37. },
  38. "tabBar": {
  39. "selectedColor": "#187BF7",
  40. "color": "#b4b4b4",
  41. "list": [{
  42. "pagePath": "pages/index/index",
  43. "text": "首页",
  44. "iconPath": "images/tabBar/index-grey.png",
  45. "selectedIconPath": "images/tabBar/index.png"
  46. },
  47. {
  48. "pagePath": "pages/voyageManage/voyageManage",
  49. "text": "航次管理",
  50. "iconPath": "images/tabBar/ship-grey.png",
  51. "selectedIconPath": "images/tabBar/ship.png"
  52. },
  53. {
  54. "pagePath": "pages/shipOwnerManage/shipOwnerList/shipOwnerList",
  55. "text": "船东管理",
  56. "iconPath": "images/tabBar/ship-owner-grey.png",
  57. "selectedIconPath": "images/tabBar/ship-owner.png"
  58. },
  59. {
  60. "pagePath": "pages/me/me",
  61. "text": "我",
  62. "iconPath": "images/tabBar/user-grey.png",
  63. "selectedIconPath": "images/tabBar/user.png"
  64. }
  65. ]
  66. },
  67. "permission": {
  68. "scope.userLocation": {
  69. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  70. }
  71. },
  72. "useExtendedLib": {},
  73. "usingComponents": {
  74. "RemotePicker": "/components/remotePicker/remotePicker",
  75. "NewPicker": "/components/newPicker/newPicker",
  76. "DateBar": "/components/dateBar/dateBar",
  77. "VoyageCard": "/components/voyageCard/voyageCard",
  78. "PortsBar": "/components/portsBar/portsBar"
  79. },
  80. "sitemapLocation": "sitemap.json",
  81. "style": "v2"
  82. }