pages.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "pages": [{
  3. "path": "pages/login/index",
  4. "style": {
  5. "navigationBarTitleText": "登录",
  6. "app-plus": {
  7. "titleNView": false
  8. }
  9. }
  10. },
  11. {
  12. "path": "pages/home/index",
  13. "style": {
  14. "navigationBarTitleText": "经销商工作平台"
  15. // "app-plus": {
  16. // "titleNView": false
  17. // }
  18. }
  19. },
  20. {
  21. "path": "pages/msg/index",
  22. "style": {
  23. "navigationBarTitleText": "消息"
  24. }
  25. },
  26. {
  27. "path": "pages/data/index",
  28. "style": {
  29. "navigationBarTitleText": "数据"
  30. }
  31. },
  32. {
  33. "path": "pages/me/index",
  34. "style": {
  35. "navigationBarTitleText": "我的"
  36. }
  37. },
  38. {
  39. "path": "pages/home/store/index",
  40. "style": {
  41. "navigationBarTitleText": "门店信息",
  42. "app-plus": {
  43. "titleNView": false //禁用原生导航栏
  44. }
  45. }
  46. }
  47. ],
  48. "globalStyle": {
  49. "navigationBarTextStyle": "white",
  50. // #ifdef H5
  51. "navigationBarBackgroundColor": "#03803B",
  52. // #endif
  53. "app-plus": {
  54. "bounce": "none",
  55. "scrollIndicator": "none",
  56. "titleNView": {
  57. "backgroundImage": "linear-gradient(to bottom, #03803B, #FF6F3B)"
  58. }
  59. }
  60. },
  61. "tabBar": {
  62. "color": "#7C7C7C",
  63. "selectedColor": "#259255",
  64. "borderStyle": "white",
  65. "backgroundColor": "#FFFFFF",
  66. "list": [{
  67. "pagePath": "pages/home/index",
  68. "text": "首页",
  69. "iconPath": "static/images/tabBar/home.png",
  70. "selectedIconPath": "static/images/tabBar/home_selected.png"
  71. },
  72. {
  73. "pagePath": "pages/data/index",
  74. "text": "数据",
  75. "iconPath": "/static/images/tabBar/data.png",
  76. "selectedIconPath": "static/images/tabBar/data_selected.png"
  77. },
  78. {
  79. "pagePath": "pages/msg/index",
  80. "text": "消息",
  81. "iconPath": "static/images/tabBar/msg.png",
  82. "selectedIconPath": "static/images/tabBar/msg_selected.png"
  83. },
  84. {
  85. "pagePath": "pages/me/index",
  86. "text": "我的",
  87. "iconPath": "static/images/tabBar/me.png",
  88. "selectedIconPath": "static/images/tabBar/me_selected.png"
  89. }
  90. ]
  91. }
  92. }