pages.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. ,{
  56. "path" : "pages/work/success/success",
  57. "style" : {
  58. "navigationBarTitleText": "归位成功"
  59. }
  60. }
  61. ],
  62. "globalStyle": {
  63. "navigationBarTextStyle": "black",
  64. "navigationBarTitleText": "uni-app",
  65. "navigationBarBackgroundColor": "#F8F8F8",
  66. "backgroundColor": "#F8F8F8"
  67. }
  68. }