pages.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/order/myOrder/myOrder",
  5. "style" :
  6. {
  7. "navigationBarTitleText" : "我的订单",
  8. "enablePullDownRefresh" : false
  9. }
  10. },
  11. {
  12. "path" : "pages/order/paySuccess/paySuccess",
  13. "style" :
  14. {
  15. "navigationBarTitleText" : "支付成功",
  16. "enablePullDownRefresh" : false
  17. }
  18. },
  19. {
  20. "path" : "pages/order/orderDetail/orderDetail",
  21. "style" :
  22. {
  23. "navigationBarTitleText" : "订单详情",
  24. "enablePullDownRefresh" : false
  25. }
  26. },
  27. {
  28. "path" : "pages/classify/classify",
  29. "style" :
  30. {
  31. "navigationBarTitleText" : "分类",
  32. "enablePullDownRefresh" : false
  33. }
  34. },
  35. {
  36. "path": "pages/index/index",
  37. "style": {
  38. "navigationBarTitleText": "首页"
  39. }
  40. },
  41. {
  42. "path" : "pages/order/submitOrder/submitOrder",
  43. "style" :
  44. {
  45. "navigationBarTitleText" : "提交订单",
  46. "enablePullDownRefresh" : false
  47. }
  48. },
  49. {
  50. "path" : "pages/user/user",
  51. "style" :
  52. {
  53. "navigationBarTitleText" : "我的",
  54. "enablePullDownRefresh" : false
  55. }
  56. },
  57. {
  58. "path" : "pages/goodDetail/goodDetail",
  59. "style" :
  60. {
  61. "navigationBarTitleText" : "商品详情",
  62. "enablePullDownRefresh" : false
  63. }
  64. }
  65. ],
  66. "easycom": {
  67. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  68. },
  69. "tabBar": {
  70. "custom": true,
  71. "color": "#C0C4CC",
  72. "selectedColor": "#000000",
  73. "borderStyle": "black",
  74. "backgroundColor": "#ffffff",
  75. "list": [{
  76. "pagePath": "pages/index/index",
  77. "iconPath": "static/ic_hone.png",
  78. "selectedIconPath": "static/ic_hone.png",
  79. "text": "首页"
  80. },
  81. {
  82. "pagePath": "pages/classify/classify",
  83. "iconPath": "static/ic_hone.png",
  84. "selectedIconPath": "static/ic_hone.png",
  85. "text": "分类"
  86. },
  87. {
  88. "pagePath": "pages/user/user",
  89. "iconPath": "static/ic_hone.png",
  90. "selectedIconPath": "static/ic_hone.png",
  91. "text": "我的"
  92. }
  93. ]
  94. },
  95. "globalStyle": {
  96. "navigationBarTextStyle": "black",
  97. "navigationBarTitleText": "uni-app",
  98. "navigationBarBackgroundColor": "#FFFFFF",
  99. "backgroundColor": "#EEEEEE"
  100. },
  101. "uniIdRouter": {}
  102. }