pages.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. // uni-ui 规则如下配置
  6. "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue",
  7. "^u--(.*)": "uview-ultra/components/u-$1/u-$1.vue",
  8. "^up-(.*)": "uview-ultra/components/u-$1/u-$1.vue",
  9. "^u-([^-].*)": "uview-ultra/components/u-$1/u-$1.vue"
  10. }
  11. },
  12. "vue3": true,
  13. "pages": [ //pages数组中第一项表示应用启动页,参考:https://doc.dcloud.net.cn/uni-app-x/collocation/pagesjson.html
  14. {
  15. "path": "pages/homepage/console",
  16. "style": {
  17. "navigationBarTitleText": "控制台"
  18. }
  19. },
  20. {
  21. "path": "pages/myEdit/my",
  22. "style": {
  23. "navigationBarTitleText": "我的"
  24. }
  25. },
  26. {
  27. "path": "pages/order/order",
  28. "style": {
  29. "navigationBarTitleText": "订单"
  30. }
  31. },
  32. {
  33. "path": "pages/account/account",
  34. "style": {
  35. "navigationBarTitleText": "账户"
  36. }
  37. },
  38. {
  39. "path": "pages/homepage/setOrderTime",
  40. "style": {
  41. "navigationBarTitleText": "接单时间"
  42. }
  43. },
  44. {
  45. "path": "pages/login/login",
  46. "style": {
  47. "navigationBarTitleText": ""
  48. }
  49. },
  50. {
  51. "path": "pages/homepage/serviceProject",
  52. "style": {
  53. "navigationBarTitleText": "服务项目"
  54. }
  55. },
  56. {
  57. "path": "pages/myEdit/myEdit",
  58. "style": {
  59. "navigationBarTitleText": "个人信息"
  60. }
  61. },
  62. {
  63. "path": "pages/login/verifyManager",
  64. "style": {
  65. "navigationBarTitleText": ""
  66. }
  67. },
  68. {
  69. "path": "pages/login/full-webview-page",
  70. "style": {
  71. "navigationBarTitleText": ""
  72. }
  73. },
  74. {
  75. "path": "pages/login/merchantRecuitment",
  76. "style": {
  77. "navigationBarTitleText": "商户招募"
  78. }
  79. },
  80. {
  81. "path": "pages/myEdit/setting",
  82. "style": {
  83. "navigationBarTitleText": "设置"
  84. }
  85. },
  86. {
  87. "path": "pages/order/orderStatisics",
  88. "style": {
  89. "navigationBarTitleText": "数据统计"
  90. }
  91. },
  92. {
  93. "path": "pages/order/appraise",
  94. "style": {
  95. "navigationBarTitleText": "客户评价"
  96. }
  97. },
  98. {
  99. "path": "pages/login/checkMiddle",
  100. "style": {
  101. "navigationBarTitleText": "商户招募"
  102. }
  103. },
  104. {
  105. "path": "pages/order/orderDetail",
  106. "style": {
  107. "navigationBarTitleText": "查看订单"
  108. }
  109. },
  110. {
  111. "path": "pages/account/accountList",
  112. "style": {
  113. "navigationBarTitleText": "全部账单"
  114. }
  115. },
  116. {
  117. "path": "pages/map/map",
  118. "style": {
  119. "navigationBarTitleText": ""
  120. }
  121. },
  122. {
  123. "path": "pages/myEdit/terminate",
  124. "style": {
  125. "navigationBarTitleText": "解约"
  126. }
  127. },
  128. {
  129. "path": "pages/myEdit/logout",
  130. "style": {
  131. "navigationBarTitleText": "退出登录"
  132. }
  133. },
  134. {
  135. "path": "pages/myEdit/changePhone",
  136. "style": {
  137. "navigationBarTitleText": "修改手机号"
  138. }
  139. },
  140. {
  141. "path": "pages/myEdit/sign",
  142. "style": {
  143. "navigationBarTitleText": "签约"
  144. }
  145. }
  146. ],
  147. "globalStyle": {
  148. "navigationBarTextStyle": "black",
  149. "navigationBarTitleText": "小丁到家--上门按摩",
  150. "navigationBarBackgroundColor": "#F8F8F8",
  151. "backgroundColor": "#F8F8F8"
  152. },
  153. "tabBar": {
  154. "selectedColor": "#000000",
  155. "backgroundColor": "#ffffff",
  156. "list": [{
  157. "pagePath": "pages/homepage/console",
  158. "iconPath": "static/iconInfo/noactive/homepage.png",
  159. "selectedIconPath": "static/iconInfo/active/homepage.png",
  160. "text": "控制台"
  161. }, {
  162. "pagePath": "pages/order/order",
  163. "iconPath": "static/iconInfo/noactive/order.png",
  164. "selectedIconPath": "static/iconInfo/active/order.png",
  165. "text": "订单"
  166. }, {
  167. "pagePath": "pages/account/account",
  168. "iconPath": "static/iconInfo/noactive/account.png",
  169. "selectedIconPath": "static/iconInfo/active/account.png",
  170. "text": "账户"
  171. },
  172. {
  173. "pagePath": "pages/myEdit/my",
  174. "iconPath": "static/iconInfo/noactive/myhome.png",
  175. "selectedIconPath": "static/iconInfo/active/myhome.png",
  176. "text": "我的"
  177. }
  178. ]
  179. },
  180. "uniIdRouter": {}
  181. }