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/index/index",
  8. "style": {
  9. "navigationStyle": "custom",
  10. "enablePullDownRefresh": false
  11. }
  12. },
  13. {
  14. "path" : "pages/my/my",
  15. "style" :
  16. {
  17. "navigationStyle": "custom",
  18. "enablePullDownRefresh" : false
  19. }
  20. }, {
  21. "path" : "pages/userInfo/userInfo",
  22. "style" :
  23. {
  24. "navigationStyle": "custom",
  25. "enablePullDownRefresh" : false
  26. }
  27. },
  28. {
  29. "path" : "pages/forgetPassword/forgetPassword",
  30. "style" :
  31. {
  32. "navigationStyle": "custom",
  33. "enablePullDownRefresh" : false
  34. }
  35. },
  36. {
  37. "path" : "pages/updatePassword/updatePassword",
  38. "style" :
  39. {
  40. "navigationStyle": "custom",
  41. "enablePullDownRefresh" : false
  42. }
  43. },
  44. {
  45. "path": "pages/login/login",
  46. "style": {
  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. "path" : "pages/specialistsList/specialistsList",
  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. }