pages.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. }
  42. },
  43. {
  44. "path": "pages/home/setting",
  45. "style": {
  46. "navigationBarTitleText": "设置"
  47. }
  48. },
  49. {
  50. "path": "pages/home/insurance/index",
  51. "style": {
  52. "navigationBarTitleText": "理赔进度",
  53. "app-plus": {
  54. "titleNView": false //禁用原生导航栏
  55. }
  56. }
  57. },
  58. {
  59. "path": "pages/home/insurance/details",
  60. "style": {
  61. "navigationBarTitleText": "轮胎保注册信息",
  62. "app-plus": {
  63. "titleNView": false //禁用原生导航栏
  64. }
  65. }
  66. },
  67. {
  68. "path": "pages/home/insurance/rules",
  69. "style": {
  70. "navigationBarTitleText": "库比森报轮胎保服务规则"
  71. }
  72. },
  73. {
  74. "path": "pages/home/insurance/itemDetails",
  75. "style": {
  76. "navigationBarTitleText": "轮胎保理赔记录"
  77. }
  78. },
  79. {
  80. "path": "pages/home/claim/details",
  81. "style": {
  82. "navigationBarTitleText": "轮胎理赔内容"
  83. }
  84. }
  85. ],
  86. "globalStyle": {
  87. "navigationBarTextStyle": "white",
  88. // #ifdef H5
  89. "navigationBarBackgroundColor": "#03803B",
  90. // #endif
  91. "app-plus": {
  92. "bounce": "none",
  93. "scrollIndicator": "none",
  94. "titleNView": {
  95. "backgroundImage": "linear-gradient(to bottom, #03803B, #FF6F3B)"
  96. }
  97. }
  98. },
  99. "tabBar": {
  100. "color": "#7C7C7C",
  101. "selectedColor": "#259255",
  102. "borderStyle": "white",
  103. "backgroundColor": "#FFFFFF",
  104. "list": [{
  105. "pagePath": "pages/home/index",
  106. "text": "首页",
  107. "iconPath": "static/images/tabBar/home.png",
  108. "selectedIconPath": "static/images/tabBar/home_selected.png"
  109. },
  110. {
  111. "pagePath": "pages/data/index",
  112. "text": "数据",
  113. "iconPath": "/static/images/tabBar/data.png",
  114. "selectedIconPath": "static/images/tabBar/data_selected.png"
  115. },
  116. {
  117. "pagePath": "pages/msg/index",
  118. "text": "消息",
  119. "iconPath": "static/images/tabBar/msg.png",
  120. "selectedIconPath": "static/images/tabBar/msg_selected.png"
  121. },
  122. {
  123. "pagePath": "pages/me/index",
  124. "text": "我的",
  125. "iconPath": "static/images/tabBar/me.png",
  126. "selectedIconPath": "static/images/tabBar/me_selected.png"
  127. }
  128. ]
  129. }
  130. }