app.json 1.8 KB

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