pages.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. "enablePullDownRefresh": false,
  11. "navigationStyle": "custom"
  12. }
  13. },
  14. {
  15. "path": "pages/login/login",
  16. "style": {
  17. "navigationBarTitleText": "",
  18. "enablePullDownRefresh": false,
  19. "navigationStyle": "custom"
  20. }
  21. },
  22. {
  23. "path": "pages/mine/mine",
  24. "style": {
  25. // "navigationBarTitleText" : "",
  26. "enablePullDownRefresh": false,
  27. "navigationStyle": "custom"
  28. }
  29. },
  30. {
  31. "path": "pages/login/register",
  32. "style": {
  33. "navigationBarTitleText": "",
  34. "enablePullDownRefresh": false,
  35. "navigationStyle": "custom"
  36. }
  37. },
  38. {
  39. "path": "pages/login/forgetPassword",
  40. "style": {
  41. "navigationBarTitleText": "",
  42. "enablePullDownRefresh": false
  43. }
  44. },
  45. {
  46. "path": "pages/login/changePasswoed",
  47. "style": {
  48. "navigationBarTitleText": "",
  49. "enablePullDownRefresh": false
  50. }
  51. },
  52. {
  53. "path": "pages/mine/myorder",
  54. "style": {
  55. "navigationBarTitleText": "我的订单",
  56. "enablePullDownRefresh": false
  57. }
  58. },
  59. {
  60. "path": "pages/mine/card",
  61. "style": {
  62. "navigationBarTitleText": "我的体验卡",
  63. "enablePullDownRefresh": false
  64. }
  65. },
  66. {
  67. "path": "pages/mine/setting",
  68. "style": {
  69. "navigationBarTitleText": "设置",
  70. "enablePullDownRefresh": false
  71. }
  72. },
  73. {
  74. "path" : "pages/mine/problem",
  75. "style" :
  76. {
  77. "navigationBarTitleText" : "常见问题",
  78. "enablePullDownRefresh" : false
  79. }
  80. },
  81. {
  82. "path" : "pages/mine/abount",
  83. "style" :
  84. {
  85. "navigationBarTitleText" : "关于我们",
  86. "enablePullDownRefresh" : false
  87. }
  88. }
  89. ],
  90. "globalStyle": {
  91. "navigationBarTextStyle": "black",
  92. "navigationBarTitleText": "uni-app",
  93. "navigationBarBackgroundColor": "#fff",
  94. "backgroundColor": "#F8F8F8"
  95. },
  96. "tabBar": {
  97. "selectedColor": "#57C2F4",
  98. "color": "#7A7A7A ",
  99. "list": [{
  100. "iconPath": "/static/images/index.png",
  101. "selectedIconPath": "/static/images/index1.png",
  102. "text": "首页",
  103. "pagePath": "pages/index/index"
  104. }, {
  105. "iconPath": "/static/images/mine.png",
  106. "selectedIconPath": "/static/images/mine1.png",
  107. "text": "我的",
  108. "pagePath": "pages/mine/mine"
  109. }]
  110. },
  111. "uniIdRouter": {}
  112. }