pages.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. {
  24. "navigationStyle": "custom",
  25. "enablePullDownRefresh" : false
  26. }
  27. }, {
  28. "path" : "pages/userInfo/userInfo",
  29. "style" :
  30. {
  31. "navigationStyle": "custom",
  32. "enablePullDownRefresh" : false
  33. }
  34. },
  35. {
  36. "path" : "pages/forgetPassword/forgetPassword",
  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/register/register",
  53. "style" :
  54. {
  55. "navigationStyle": "custom",
  56. "enablePullDownRefresh" : false
  57. }
  58. }
  59. ],
  60. "tabBar": {
  61. "color": "#999999",
  62. "selectedColor": "#333333",
  63. "borderStyle": "white",
  64. "backgroundColor": "#ffffff",
  65. "list": [{
  66. "pagePath": "pages/index/index",
  67. "iconPath": "static/tabBarImg/dianzan.png",
  68. "selectedIconPath": "static/tabBarImg/dianzan_cur.png",
  69. "text": "首页"
  70. }, {
  71. "pagePath": "pages/my/my",
  72. "iconPath": "static/tabBarImg/me.png",
  73. "selectedIconPath": "static/tabBarImg/me_cur.png",
  74. "text": "我的"
  75. }]
  76. },
  77. "globalStyle": {
  78. "navigationBarTextStyle": "black",
  79. // "navigationBarTitleText": "加载中",
  80. "navigationBarBackgroundColor": "#FFE05C",
  81. "backgroundColor": "#FFE05C"
  82. },
  83. "uniIdRouter": {}
  84. }