pages.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. }
  11. },
  12. {
  13. "path": "pages/user/login",
  14. "style": {
  15. "navigationBarTitleText": "授权登陆"
  16. }
  17. },
  18. {
  19. "path": "pages/user/my",
  20. "style": {
  21. "navigationBarTitleText": "我的"
  22. }
  23. },
  24. {
  25. "path": "pages/goods/shopcar",
  26. "style": {
  27. "navigationBarTitleText": "购物车",
  28. "enablePullDownRefresh": false
  29. }
  30. },
  31. {
  32. "path": "pages/goods/index",
  33. "style": {
  34. "navigationBarTitleText": "商品服务",
  35. "enablePullDownRefresh": true,
  36. "backgroundTextStyle": "dark",
  37. "app-plus": {
  38. "pullToRefresh": {
  39. "support": true,
  40. "style": "circle",
  41. "offset": 0
  42. }
  43. }
  44. }
  45. },
  46. {
  47. "path": "pages/goods/detail",
  48. "style": {
  49. "navigationBarTitleText": "服务详情"
  50. }
  51. },
  52. {
  53. "path": "pages/user/info",
  54. "style": {
  55. "navigationBarTitleText": "账户设置"
  56. }
  57. },
  58. {
  59. "path": "pages/goods/pay",
  60. "style": {
  61. "navigationBarTitleText": "订单支付",
  62. "enablePullDownRefresh": false
  63. }
  64. }, {
  65. "path": "pages/order/list",
  66. "style": {
  67. "navigationBarTitleText": "我的订单",
  68. "enablePullDownRefresh": true,
  69. "backgroundTextStyle": "dark",
  70. "app-plus": {
  71. "pullToRefresh": {
  72. "support": true,
  73. "style": "circle",
  74. "offset": 0
  75. }
  76. }
  77. }
  78. }, {
  79. "path": "pages/order/detail",
  80. "style": {
  81. "navigationBarTitleText": "订单详情",
  82. "enablePullDownRefresh": false
  83. }
  84. }
  85. ],
  86. "tabBar": {
  87. "color": "#7A7E83",
  88. "selectedColor": "#c74547",
  89. "borderStyle": "black",
  90. "backgroundColor": "#F8F8F8",
  91. "list": [{
  92. "pagePath": "pages/index/index",
  93. "iconPath": "static/tab/home.png",
  94. "selectedIconPath": "static/tab/home_select.png",
  95. "text": "首页"
  96. },
  97. {
  98. "pagePath": "pages/goods/index",
  99. "iconPath": "static/tab/goods.png",
  100. "selectedIconPath": "static/tab/goods_select.png",
  101. "text": "服务"
  102. },
  103. {
  104. "pagePath": "pages/goods/shopcar",
  105. "iconPath": "static/tab/shopcar.png",
  106. "selectedIconPath": "static/tab/shopcar_select.png",
  107. "text": "购物车"
  108. },
  109. {
  110. "pagePath": "pages/user/my",
  111. "iconPath": "static/tab/my.png",
  112. "selectedIconPath": "static/tab/my_select.png",
  113. "text": "我的"
  114. }
  115. ]
  116. },
  117. "globalStyle": {
  118. "navigationBarTextStyle": "white",
  119. "navigationBarTitleText": "广安农机农技智慧服务",
  120. "navigationBarBackgroundColor": "#c74547",
  121. "backgroundColor": "#F8F8F8"
  122. }
  123. }