时空网前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

111 lines
2.4 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pageshttps://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/index/index",
  8. "style": {
  9. "navigationBarTitleText": "首页",
  10. "enablePullDownRefresh": true
  11. }
  12. },
  13. {
  14. "path": "pages/order/index",
  15. "style": {
  16. "navigationBarTitleText": "我的订单"
  17. }
  18. },
  19. {
  20. "path": "pages/order/order-details",
  21. "style": {
  22. "navigationBarTitleText": "订单详情"
  23. }
  24. },
  25. {
  26. "path": "pages/order/confirm-order",
  27. "style": {
  28. "navigationBarTitleText": "确认订单"
  29. }
  30. },
  31. {
  32. "path": "pages/order/pay-success",
  33. "style": {
  34. "navigationBarTitleText": "支付结果"
  35. }
  36. },
  37. {
  38. "path": "pages/order/apply-refund",
  39. "style": {
  40. "navigationBarTitleText": "申请退款"
  41. }
  42. },
  43. {
  44. "path": "pages/order/apply-details",
  45. "style": {
  46. "navigationBarTitleText": "退款详情"
  47. }
  48. },
  49. {
  50. "path": "pages/center/index",
  51. "style": {
  52. "navigationBarTitleText": "我的"
  53. }
  54. },
  55. {
  56. "path": "pages/goodsDetail/index",
  57. "style": {
  58. "navigationBarTitleText": "商品详情",
  59. "backgroundColor": "#F5F5F5"
  60. }
  61. },
  62. {
  63. "path": "pages/collect/index",
  64. "style": {
  65. "navigationBarTitleText": "我的收藏"
  66. }
  67. },
  68. {
  69. "path": "pages/contactService/index",
  70. "style": {
  71. "navigationBarTitleText": "联系客服"
  72. }
  73. },
  74. {
  75. "path": "pages/login/index",
  76. "style": {
  77. "navigationBarTitleText": "登录"
  78. }
  79. }
  80. ],
  81. "globalStyle": {
  82. "navigationBarTextStyle": "black",
  83. "navigationBarTitleText": "uView",
  84. "navigationBarBackgroundColor": "#fff",
  85. "backgroundColor": "#fff"
  86. },
  87. "tabBar": {
  88. "color": "#909399",
  89. "selectedColor": "#FE9903",
  90. "borderStyle": "black",
  91. "backgroundColor": "#ffffff",
  92. "list": [{
  93. "pagePath": "pages/index/index",
  94. "iconPath": "static/tabbar/home.png",
  95. "selectedIconPath": "static/tabbar/home-active.png",
  96. "text": "首页"
  97. }, {
  98. "pagePath": "pages/order/index",
  99. "iconPath": "static/tabbar/order.png",
  100. "selectedIconPath": "static/tabbar/order-active.png",
  101. "text": "订单"
  102. },
  103. {
  104. "pagePath": "pages/center/index",
  105. "iconPath": "static/tabbar/my.png",
  106. "selectedIconPath": "static/tabbar/my-active.png",
  107. "text": "我的"
  108. }
  109. ]
  110. }
  111. }