pages.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. }
  11. },
  12. {
  13. "path": "pages/mine/mine",
  14. "style": {
  15. "navigationBarTitleText": "个人中心"
  16. }
  17. },
  18. {
  19. "path": "pages/login/login",
  20. "style": {
  21. "navigationBarTitleText": "注册/登录"
  22. }
  23. },
  24. {
  25. "path": "pages/mine/identity_authentication",
  26. "style": {
  27. "navigationBarTitleText": "身份认证",
  28. "enablePullDownRefresh": false
  29. }
  30. },
  31. {
  32. "path": "pages/mine/scheduling",
  33. "style": {
  34. "navigationBarTitleText": "排班设置"
  35. }
  36. },
  37. {
  38. "path": "pages/mine/myMoney",
  39. "style": {
  40. "navigationBarTitleText": "我的钱包"
  41. }
  42. },
  43. {
  44. "path": "pages/mine/evaluate",
  45. "style": {
  46. "navigationBarTitleText": "评价管理"
  47. }
  48. },
  49. {
  50. "path": "pages/mine/info",
  51. "style": {
  52. "navigationBarTitleText": "个人信息"
  53. }
  54. },
  55. {
  56. "path": "uview-ui/components/u-avatar-cropper/u-avatar-cropper",
  57. "style": {
  58. "navigationBarTitleText": "头像裁剪",
  59. "navigationBarBackgroundColor": "#000000"
  60. }
  61. },
  62. {
  63. "path": "pages/mine/message",
  64. "style": {
  65. "navigationBarTitleText": "消息提醒"
  66. }
  67. },
  68. {
  69. "path": "pages/mine/bank_card",
  70. "style": {
  71. "navigationBarTitleText": "银行卡绑定"
  72. }
  73. },
  74. {
  75. "path": "pages/mine/accountInfo",
  76. "style": {
  77. "navigationBarTitleText": "收入明细"
  78. }
  79. },
  80. {
  81. "path": "pages/mine/withdrawal",
  82. "style": {
  83. "navigationBarTitleText": "申请提现"
  84. }
  85. },
  86. {
  87. "path": "pages/mine/moneyRecord",
  88. "style": {
  89. "navigationBarTitleText": "提现记录"
  90. }
  91. },
  92. {
  93. "path": "pages/index/orderInfo",
  94. "style": {
  95. "navigationBarTitleText": "订单详情"
  96. }
  97. },
  98. {
  99. "path": "pages/realTime/realTime",
  100. "style": {
  101. "navigationBarTitleText": "实时订单"
  102. }
  103. },
  104. {
  105. "path": "pages/index/preview",
  106. "style": {
  107. "navigationBarTitleText": ""
  108. }
  109. }
  110. ],
  111. "globalStyle": {
  112. "navigationStyle": "custom",
  113. "navigationBarTextStyle": "black",
  114. "navigationBarTitleText": "uni-app",
  115. "navigationBarBackgroundColor": "#F8F8F8",
  116. "backgroundColor": "#F8F8F8"
  117. },
  118. "tabBar": {
  119. "color": "#000",
  120. "selectedColor": "#FBC600",
  121. "borderStyle": "black",
  122. "backgroundColor": "#ffffff",
  123. "list": [{
  124. "pagePath": "pages/index/index",
  125. "iconPath": "/static/index.png",
  126. "selectedIconPath": "/static/index-select.png",
  127. "text": "首页"
  128. },
  129. {
  130. "pagePath": "pages/realTime/realTime",
  131. "iconPath": "/static/realTime.png",
  132. "selectedIconPath": "/static/realTime_select.png",
  133. "text": "实时订单"
  134. },
  135. {
  136. "pagePath": "pages/mine/mine",
  137. "iconPath": "/static/mine.png",
  138. "selectedIconPath": "/static/mine-select.png",
  139. "text": "我的"
  140. }
  141. ]
  142. }
  143. }