pages.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. "navigationStyle": "custom",
  11. "enablePullDownRefresh": false
  12. }
  13. },
  14. {
  15. "path": "pages/login/login",
  16. "style": {
  17. "navigationBarTitleText": "授权登录"
  18. }
  19. },
  20. {
  21. "path": "pages/store/storeList",
  22. "style": {
  23. "navigationBarTitleText": "网点列表"
  24. }
  25. }, {
  26. "path": "pages/store/storeDetail",
  27. "style": {
  28. "navigationBarTitleText": "网点详情"
  29. }
  30. }, {
  31. "path": "pages/userCenter/index",
  32. "style": {
  33. "navigationBarTitleText": "个人中心"
  34. }
  35. }, {
  36. "path": "pages/coupon/index/index",
  37. "style": {
  38. "navigationBarTitleText": "我的优惠卷"
  39. }
  40. }, {
  41. "path": "pages/order/order",
  42. "style": {
  43. "navigationBarTitleText": "我的订单"
  44. }
  45. }, {
  46. "path": "pages/order/orderDetail",
  47. "style": {
  48. "navigationBarTitleText": "订单详情"
  49. }
  50. }, {
  51. "path": "pages/work/index/index",
  52. "style": {
  53. "navigationBarTitleText": "洗车服务中"
  54. }
  55. }, {
  56. "path": "pages/getOrder/getOrder",
  57. "style": {
  58. "navigationBarTitleText": "准备洗车"
  59. }
  60. }, {
  61. "path": "pages/work/success/success",
  62. "style": {
  63. "navigationBarTitleText": "归位成功"
  64. }
  65. }, {
  66. "path": "pages/agreement/agreement",
  67. "style": {
  68. "navigationBarTitleText": "注意事项及服务协议"
  69. }
  70. }, {
  71. "path": "pages/coupon/chooseCoupon/chooseCoupon",
  72. "style": {
  73. "navigationBarTitleText": "选择优惠卷"
  74. }
  75. }, {
  76. "path": "pages/careMore/careMore",
  77. "style": {
  78. "navigationBarTitleText": "注意事项"
  79. }
  80. }, {
  81. "path": "pages/coupon/getCoupon/getCoupon",
  82. "style": {
  83. "navigationBarTitleText": "领取优惠券"
  84. }
  85. }
  86. ],
  87. "globalStyle": {
  88. "navigationBarTextStyle": "black",
  89. "navigationBarTitleText": "uni-app",
  90. "navigationBarBackgroundColor": "#F8F8F8",
  91. "backgroundColor": "#F8F8F8"
  92. }
  93. }