pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. {
  2. "easycom": {
  3. // 关键步骤3:配置easycom规则
  4. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  5. },
  6. "pages": [
  7. {
  8. "path": "pages/home/index",
  9. "style": {
  10. "navigationBarTitleText": "经销商工作平台",
  11. "app-plus": {
  12. "titleNView": false
  13. }
  14. }
  15. },
  16. {
  17. "path": "pages/login/index",
  18. "style": {
  19. "navigationBarTitleText": "登录",
  20. "app-plus": {
  21. "titleNView": false
  22. }
  23. }
  24. },
  25. {
  26. "path": "pages/msg/index",
  27. "style": {
  28. "navigationBarTitleText": "消息"
  29. }
  30. },
  31. {
  32. "path": "pages/data/index",
  33. "style": {
  34. "navigationBarTitleText": "数据"
  35. }
  36. },
  37. {
  38. "path": "pages/me/index",
  39. "style": {
  40. "navigationBarTitleText": "我的",
  41. "app-plus": {
  42. "titleNView": false //禁用原生导航栏
  43. }
  44. }
  45. },
  46. {
  47. "path": "pages/me/setting",
  48. "style": {
  49. "navigationBarTitleText": "设置"
  50. }
  51. },
  52. {
  53. "path": "pages/home/store/index",
  54. "style": {
  55. "navigationBarTitleText": "门店信息",
  56. "app-plus": {
  57. "titleNView": false //禁用原生导航栏
  58. }
  59. }
  60. },
  61. {
  62. "path": "pages/home/store/details",
  63. "style": {
  64. "navigationBarTitleText": "门店编辑"
  65. }
  66. },
  67. {
  68. "path": "pages/home/claim/index",
  69. "style": {
  70. "navigationBarTitleText": "理赔进度",
  71. "app-plus": {
  72. "titleNView": false //禁用原生导航栏
  73. }
  74. }
  75. },
  76. {
  77. "path": "pages/home/claim/details",
  78. "style": {
  79. "navigationBarTitleText": "轮胎理赔内容"
  80. }
  81. }
  82. ],
  83. "globalStyle": {
  84. "navigationBarTextStyle": "white",
  85. // #ifdef H5
  86. "navigationBarBackgroundColor": "#03803B",
  87. // #endif
  88. "app-plus": {
  89. "bounce": "none",
  90. "scrollIndicator": "none",
  91. "titleNView": {
  92. "backgroundImage": "linear-gradient(to bottom, #03803B, #FF6F3B)"
  93. }
  94. }
  95. },
  96. "tabBar": {
  97. "color": "#7C7C7C",
  98. "selectedColor": "#259255",
  99. "borderStyle": "white",
  100. "backgroundColor": "#FFFFFF",
  101. "list": [{
  102. "pagePath": "pages/home/index",
  103. "text": "首页",
  104. "iconPath": "static/images/tabBar/home.png",
  105. "selectedIconPath": "static/images/tabBar/home_selected.png"
  106. },
  107. {
  108. "pagePath": "pages/data/index",
  109. "text": "数据",
  110. "iconPath": "/static/images/tabBar/data.png",
  111. "selectedIconPath": "static/images/tabBar/data_selected.png"
  112. },
  113. {
  114. "pagePath": "pages/msg/index",
  115. "text": "消息",
  116. "iconPath": "static/images/tabBar/msg.png",
  117. "selectedIconPath": "static/images/tabBar/msg_selected.png"
  118. },
  119. {
  120. "pagePath": "pages/me/index",
  121. "text": "我的",
  122. "iconPath": "static/images/tabBar/me.png",
  123. "selectedIconPath": "static/images/tabBar/me_selected.png"
  124. }
  125. ]
  126. }
  127. }