pages.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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/login/login",
  8. "style": {
  9. "navigationStyle": "custom",
  10. "enablePullDownRefresh": false
  11. }
  12. },
  13. {
  14. "path": "pages/index/index",
  15. "style": {
  16. "navigationStyle": "custom",
  17. "enablePullDownRefresh": false
  18. }
  19. },
  20. {
  21. "path": "pages/my/my",
  22. "style": {
  23. "navigationStyle": "custom",
  24. "enablePullDownRefresh": false
  25. }
  26. },
  27. {
  28. "path" : "pages/scanCode/scanCode",
  29. "style" :
  30. {
  31. "navigationStyle": "custom",
  32. "enablePullDownRefresh" : false
  33. }
  34. },
  35. {
  36. "path" : "pages/userInfo/userInfo",
  37. "style" :
  38. {
  39. "navigationStyle": "custom",
  40. "enablePullDownRefresh" : false
  41. }
  42. },
  43. {
  44. "path" : "pages/updatePassword/updatePassword",
  45. "style" :
  46. {
  47. "navigationStyle": "custom",
  48. "enablePullDownRefresh" : false
  49. }
  50. },
  51. {
  52. "path" : "pages/performanceList/performanceList",
  53. "style" :
  54. {
  55. "navigationStyle": "custom",
  56. "enablePullDownRefresh" : false
  57. }
  58. },
  59. {
  60. "path" : "pages/forgetPassword/forgetPassword",
  61. "style" :
  62. {
  63. "navigationStyle": "custom",
  64. "enablePullDownRefresh" : false
  65. }
  66. }
  67. ],
  68. "tabBar": {
  69. "color": "#999999",
  70. "selectedColor": "#333333",
  71. "borderStyle": "white",
  72. "backgroundColor": "#ffffff",
  73. "list": [{
  74. "pagePath": "pages/index/index",
  75. "iconPath": "static/tabBarImg/dianzan.png",
  76. "selectedIconPath": "static/tabBarImg/dianzan_cur.png",
  77. "text": "服务"
  78. }, {
  79. "pagePath": "pages/my/my",
  80. "iconPath": "static/tabBarImg/me.png",
  81. "selectedIconPath": "static/tabBarImg/me_cur.png",
  82. "text": "我的"
  83. }]
  84. },
  85. "globalStyle": {
  86. "navigationBarTextStyle": "black",
  87. // "navigationBarTitleText": "加载中",
  88. "navigationBarBackgroundColor": "#FFE05C",
  89. "backgroundColor": "#FFE05C"
  90. },
  91. "uniIdRouter": {}
  92. }