pages.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. }
  12. },
  13. {
  14. "path": "pages/login/login",
  15. "style": {
  16. "navigationBarTitleText": "授权登录"
  17. }
  18. },
  19. {
  20. "path": "pages/login/phoneLogin",
  21. "style": {
  22. "navigationBarTitleText": "手机号登录"
  23. }
  24. },
  25. {
  26. "path": "pages/userCenter/index",
  27. "style": {
  28. "navigationBarTitleText": "个人中心"
  29. }
  30. },
  31. {
  32. "path": "pages/userCenter/aboutUs",
  33. "style": {
  34. "navigationBarTitleText": "关于我们"
  35. }
  36. },
  37. {
  38. "path": "pages/agreement/agreement",
  39. "style": {
  40. "navigationBarTitleText": "用户协议及隐私政策"
  41. }
  42. },
  43. {
  44. "path": "pages/userCenter/changePwd", // 我的>修改密码
  45. "style": {
  46. "navigationBarTitleText": "修改密码"
  47. }
  48. },
  49. {
  50. "path": "pages/recoveryPrice/index",
  51. "style": {
  52. "navigationBarTitleText": "今日回收价格"
  53. }
  54. },
  55. {
  56. "path": "pages/order/historyOrder",
  57. "style": {
  58. "navigationBarTitleText": "历史订单"
  59. }
  60. },
  61. {
  62. "path": "pages/order/hisOrderDetail",
  63. "style": {
  64. "navigationBarTitleText": "订单详情"
  65. }
  66. },
  67. {
  68. "path": "pages/order/waitOrderDetail",
  69. "style": {
  70. "navigationBarTitleText": "订单详情"
  71. }
  72. },
  73. {
  74. "path": "pages/recoveryTotal/index",
  75. "style": {
  76. "navigationBarTitleText": "回收统计"
  77. }
  78. },
  79. {
  80. "path": "pages/order/finish",
  81. "style": {
  82. "navigationBarTitleText": "服务完成"
  83. }
  84. }
  85. ],
  86. "globalStyle": {
  87. "navigationBarTextStyle": "black",
  88. "navigationBarTitleText": "uni-app",
  89. "navigationBarBackgroundColor": "#FFFFFF",
  90. "backgroundColor": "#f2f2f2",
  91. "app-plus": {
  92. // 将回弹属性关掉
  93. "bounce": "none",
  94. "scrollIndicator": "none"
  95. }
  96. },
  97. "tabBar": {
  98. "color": "#999999",
  99. "selectedColor": "#4F88F7",
  100. "backgroundColor": "#ffffff",
  101. "fontSize": "14px",
  102. "list": [
  103. {
  104. "pagePath": "pages/index/index",
  105. "iconPath": "static/tabbar/tab_home_normal.png",
  106. "selectedIconPath": "static/tabbar/tab_home_pressed.png",
  107. "text": "首页"
  108. },
  109. {
  110. "pagePath": "pages/userCenter/index",
  111. "iconPath": "static/tabbar/tab_personal_normal.png",
  112. "selectedIconPath": "static/tabbar/tab_personal_pressed.png",
  113. "text": "我的"
  114. }]
  115. }
  116. }