pages.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/index/index",
  8. "style": {
  9. "navigationBarTitleText": "首页",
  10. "navigationStyle":"custom"
  11. }
  12. },
  13. {
  14. "path": "pages/personCenter/personCenter",
  15. "style": {
  16. "navigationBarTitleText": "我的",
  17. "navigationBarBackgroundColor": "#86defa"
  18. }
  19. },
  20. {
  21. "path": "pages/login/login",
  22. "style": {
  23. "navigationBarTitleText": "登录"
  24. }
  25. }, {
  26. "path": "pages/login/phoneLogin",
  27. "style": {
  28. "navigationBarTitleText": "手机号登录"
  29. }
  30. },
  31. {
  32. "path": "pages/about",
  33. "style": {
  34. "navigationBarTitleText": "关于我们"
  35. }
  36. },
  37. {
  38. "path": "pages/xieyi/index",
  39. "style": {
  40. "navigationBarTitleText": "用户协议"
  41. }
  42. },
  43. {
  44. "path": "pages/h5Page/index",
  45. "style": {
  46. "navigationBarTitleText": "车领主"
  47. }
  48. },
  49. {
  50. "path": "pages/personData/personData",
  51. "style": {
  52. "navigationBarTitleText": "个人信息"
  53. }
  54. },
  55. {
  56. "path": "pages/scan-frame/scan-frame",
  57. "style": {
  58. "navigationBarTitleText": "扫描VIN"
  59. }
  60. }
  61. ,{
  62. "path" : "pages/vinInput/vinInput",
  63. "style" :
  64. {
  65. "navigationBarTitleText": "手动输入VIN",
  66. "enablePullDownRefresh": false
  67. }
  68. }
  69. ,{
  70. "path" : "pages/vinInput/confirmVin",
  71. "style" :
  72. {
  73. "navigationBarTitleText": "确认VIN",
  74. "enablePullDownRefresh": false
  75. }
  76. }
  77. ,{
  78. "path" : "pages/vinInput/share",
  79. "style" :
  80. {
  81. "navigationBarTitleText": "分享VIN",
  82. "navigationStyle":"custom"
  83. }
  84. }
  85. ,{
  86. "path" : "pages/vinRecord/vinRecord",
  87. "style" :
  88. {
  89. "navigationBarTitleText": "VIN查询记录",
  90. "enablePullDownRefresh": false
  91. }
  92. }
  93. ,{
  94. "path" : "pages/morePage/morePage",
  95. "style" :
  96. {
  97. "navigationBarTitleText": "更多功能",
  98. "enablePullDownRefresh": false,
  99. "navigationBarBackgroundColor": "#86defa"
  100. }
  101. }
  102. ,{
  103. "path" : "pages/stockQuery/stockQuery",
  104. "style" :
  105. {
  106. "navigationBarTitleText": "库存查询",
  107. "enablePullDownRefresh": false
  108. }
  109. }
  110. ],
  111. "globalStyle": {
  112. "navigationBarTextStyle": "black",
  113. "navigationBarTitleText": "uni-app",
  114. "navigationBarBackgroundColor": "#F8F8F8",
  115. "backgroundColor": "#F8F8F8"
  116. },
  117. "tabBar": {
  118. "color": "#7A7E83",
  119. "selectedColor": "#191919",
  120. "backgroundColor": "#ffffff",
  121. "fontSize": "14px",
  122. "list": [{
  123. "pagePath": "pages/index/index",
  124. "iconPath": "static/tab/tab_home_normal.png",
  125. "selectedIconPath": "static/tab/tab_home_pressed.png",
  126. "text": "首页"
  127. },
  128. {
  129. "pagePath": "pages/morePage/morePage",
  130. "iconPath": "static/tab/tab_personal_normal.png",
  131. "selectedIconPath": "static/tab/tab_personal_pressed.png",
  132. "text": "更多"
  133. }
  134. ]
  135. }
  136. }