pages.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/home/home",
  5. "style": {
  6. "navigationStyle": "custom"
  7. }
  8. }
  9. ,{
  10. "path" : "pages/order/order",
  11. "style" :
  12. {
  13. "navigationBarTitleText": "",
  14. "enablePullDownRefresh": false
  15. }
  16. }
  17. ,{
  18. "path" : "pages/user-center/user-center",
  19. "style" :
  20. {
  21. "navigationBarTitleText": "",
  22. "enablePullDownRefresh": false
  23. }
  24. }
  25. ,{
  26. "path" : "pages/shopping-cart/shopping-cart",
  27. "style" :
  28. {
  29. "navigationBarTitleText": "",
  30. "enablePullDownRefresh": false
  31. }
  32. }
  33. ],
  34. "globalStyle": {
  35. "navigationBarTextStyle": "black",
  36. "navigationBarTitleText": "uni-app",
  37. "navigationBarBackgroundColor": "#F8F8F8",
  38. "backgroundColor": "#F8F8F8"
  39. },
  40. "tabBar": {
  41. "color": "#7A7E83",
  42. "selectedColor": "#ff5555",
  43. "borderStyle": "black",
  44. "backgroundColor": "#ffffff",
  45. "midButton":{
  46. "iconPath": "static/images/camera.png",
  47. "iconWidth":"40px",
  48. "height":"45px"
  49. },
  50. "list": [{
  51. "pagePath": "pages/home/home",
  52. "iconPath": "static/images/home.png",
  53. "selectedIconPath": "static/images/home_selected.png",
  54. "text": "首页"
  55. }, {
  56. "pagePath": "pages/order/order",
  57. "iconPath": "static/images/qiang.png",
  58. "selectedIconPath": "static/images/qiang_selected.png",
  59. "text": "订单"
  60. }, {
  61. "pagePath": "pages/shopping-cart/shopping-cart",
  62. "iconPath": "static/images/kan.png",
  63. "selectedIconPath": "static/images/kan_selected.png",
  64. "text": "购物车"
  65. }, {
  66. "pagePath": "pages/user-center/user-center",
  67. "iconPath": "static/images/user.png",
  68. "selectedIconPath": "static/images/user_selected.png",
  69. "text": "我的"
  70. }]
  71. }
  72. }