app.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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/sharePage/sharePage",
  13. "pages/voyageManage/createVoyage/createVoyage",
  14. "pages/voyageManage/myBills/myBills",
  15. "pages/voyageManage/takeBill/takeBill",
  16. "pages/voyageManage/myBills/examine/examine",
  17. "pages/voyageManage/myDaily/myDaily",
  18. "pages/voyageManage/myDaily/examine/examine",
  19. "pages/voyages/uploadCarLoadRecord/uploadCarLoadRecord",
  20. "pages/voyages/uploadDischarge/uploadDischarge"
  21. ],
  22. "window": {
  23. "backgroundColor": "#F6F6F6",
  24. "backgroundTextStyle": "light",
  25. "navigationBarBackgroundColor": "#F6F6F6",
  26. "navigationBarTitleText": "汇很多",
  27. "navigationBarTextStyle": "black"
  28. },
  29. "tabBar": {
  30. "list": [{
  31. "pagePath": "pages/index/index",
  32. "text": "首页",
  33. "iconPath": "images/tabBar/index.png",
  34. "selectedIconPath": "images/tabBar/index-c.png"
  35. },
  36. {
  37. "pagePath": "pages/voyageManage/voyageManage",
  38. "text": "航次管理",
  39. "iconPath": "images/tabBar/voyage.png",
  40. "selectedIconPath": "images/tabBar/voyage-c.png"
  41. },
  42. {
  43. "pagePath": "pages/shipOwnerManage/shipOwnerList/shipOwnerList",
  44. "text": "船东管理",
  45. "iconPath": "images/tabBar/shipOwner.png",
  46. "selectedIconPath": "images/tabBar/shipOwner-c.png"
  47. },
  48. {
  49. "pagePath": "pages/me/me",
  50. "text": "我",
  51. "iconPath": "images/tabBar/user.png",
  52. "selectedIconPath": "images/tabBar/user-c.png"
  53. }
  54. ]
  55. },
  56. "permission": {
  57. "scope.userLocation": {
  58. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  59. }
  60. },
  61. "useExtendedLib": {},
  62. "usingComponents": {
  63. "RemotePicker": "/components/remotePicker/remotePicker"
  64. },
  65. "sitemapLocation": "sitemap.json",
  66. "style": "v2"
  67. }