pages.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/login",
  5. "style": {
  6. "navigationBarTitleText": "登录"
  7. }
  8. },
  9. {
  10. "path": "pages/register/register",
  11. "style": {
  12. "navigationBarTitleText": "注册"
  13. }
  14. },
  15. {
  16. "path": "pages/home/home",
  17. "style": {
  18. "navigationBarTitleText": "首页"
  19. }
  20. },
  21. {
  22. "path": "pages/my/my",
  23. "style": {
  24. "navigationBarTitleText": "我的"
  25. }
  26. },
  27. {
  28. "path": "pages/detail/detail",
  29. "style": {
  30. "navigationBarTitleText": "详情"
  31. }
  32. },
  33. {
  34. "path": "pages/address/address",
  35. "style": {
  36. "navigationBarTitleText": "地址"
  37. }
  38. },
  39. {
  40. "path": "pages/shop/shop",
  41. "style": {
  42. "navigationBarTitleText": "购物车"
  43. }
  44. },
  45. {
  46. "path": "pages/type/type",
  47. "style": {
  48. "navigationBarTitleText": "分类"
  49. }
  50. }
  51. ],
  52. "globalStyle": {
  53. "navigationBarTextStyle": "white",
  54. "navigationBarTitleText": "uni-app",
  55. "navigationBarBackgroundColor": "#ff0000",
  56. // "backgroundColor": "#ff0000",
  57. "usingComponents": {
  58. "van-button": "/wxcomponents/dist/button/index",
  59. "van-image": "/wxcomponents/dist/image/index",
  60. "van-field": "/wxcomponents/dist/field/index",
  61. "van-tabbar": "/wxcomponents/dist/tabbar/index",
  62. "van-tabbar-item": "/wxcomponents/dist/tabbar-item/index",
  63. "van-search": "/wxcomponents/dist/search/index",
  64. "van-grid": "/wxcomponents/dist/grid/index",
  65. "van-grid-item": "/wxcomponents/dist/grid-item/index",
  66. "van-notice-bar": "/wxcomponents/dist/notice-bar/index",
  67. "van-tree-select": "/wxcomponents/dist/tree-select/index",
  68. "van-card": "/wxcomponents/dist/card/index",
  69. "van-sidebar": "/wxcomponents/dist/sidebar/index",
  70. "van-sidebar-item": "/wxcomponents/dist/sidebar-item/index",
  71. "van-empty": "/wxcomponents/dist/empty/index"
  72. }
  73. },
  74. "tabBar": {
  75. "color": "#000000",
  76. "selectedColor": "#ff0000",
  77. "borderStyle": "black",
  78. "backgroundColor": "#ffffff",
  79. "list": [{
  80. "pagePath": "pages/home/home",
  81. "iconPath": "static/home.png",
  82. "selectedIconPath": "static/home_active.png",
  83. "text": "首页"
  84. }, {
  85. "pagePath": "pages/type/type",
  86. "iconPath": "static/type.png",
  87. "selectedIconPath": "static/type_active.png",
  88. "text": "分类"
  89. }, {
  90. "pagePath": "pages/shop/shop",
  91. "iconPath": "static/shop.png",
  92. "selectedIconPath": "static/shop_active.png",
  93. "text": "购物车"
  94. }, {
  95. "pagePath": "pages/my/my",
  96. "iconPath": "static/my.png",
  97. "selectedIconPath": "static/my_active.png",
  98. "text": "我的"
  99. }]
  100. },
  101. "uniIdRouter": {}
  102. }