pages.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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/store/storeList",
  16. "style": {
  17. "navigationBarTitleText": "网点列表"
  18. }
  19. }, {
  20. "path": "pages/store/storeDetail",
  21. "style": {
  22. "navigationBarTitleText": "网点详情"
  23. }
  24. }, {
  25. "path": "pages/userCenter/index",
  26. "style": {
  27. "navigationBarTitleText": "个人中心"
  28. }
  29. }, {
  30. "path": "pages/coupon/index/index",
  31. "style": {
  32. "navigationBarTitleText": "我的优惠卷"
  33. }
  34. }, {
  35. "path": "pages/order/order",
  36. "style": {
  37. "navigationBarTitleText": "我的订单"
  38. }
  39. }, {
  40. "path": "pages/order/orderDetail",
  41. "style": {
  42. "navigationBarTitleText": "订单详情"
  43. }
  44. }, {
  45. "path": "pages/work/index/index",
  46. "style": {
  47. "navigationBarTitleText": "洗车服务中"
  48. }
  49. }, {
  50. "path": "pages/getOrder/getOrder",
  51. "style": {
  52. "navigationBarTitleText": "准备洗车"
  53. }
  54. }, {
  55. "path": "pages/work/success/success",
  56. "style": {
  57. "navigationBarTitleText": "归位成功"
  58. }
  59. }, {
  60. "path": "pages/agreement/agreement",
  61. "style": {
  62. "navigationBarTitleText": "注意事项及服务协议"
  63. }
  64. }, {
  65. "path": "pages/coupon/chooseCoupon/chooseCoupon",
  66. "style": {
  67. "navigationBarTitleText": "选择优惠卷"
  68. }
  69. }
  70. ],
  71. "globalStyle": {
  72. "navigationBarTextStyle": "black",
  73. "navigationBarTitleText": "uni-app",
  74. "navigationBarBackgroundColor": "#F8F8F8",
  75. "backgroundColor": "#F8F8F8"
  76. }
  77. }