pages.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. "van-row": "/wxcomponents/dist/row/index",
  73. "van-col": "/wxcomponents/dist/col/index",
  74. "van-icon": "/wxcomponents/dist/icon/index",
  75. "van-divider": "/wxcomponents/dist/divider/index",
  76. "van-cell": "/wxcomponents/dist/cell/index",
  77. "van-cell-group": "/wxcomponents/dist/cell-group/index",
  78. "van-tag": "/wxcomponents/dist/tag/index",
  79. "van-goods-action": "/wxcomponents/dist/goods-action/index",
  80. "van-goods-action-icon": "/wxcomponents/dist/goods-action-icon/index",
  81. "van-goods-action-button": "/wxcomponents/dist/goods-action-button/index",
  82. "van-action-sheet": "/wxcomponents/dist/action-sheet/index"
  83. }
  84. },
  85. "tabBar": {
  86. "color": "#000000",
  87. "selectedColor": "#ff0000",
  88. "borderStyle": "black",
  89. "backgroundColor": "#ffffff",
  90. "list": [{
  91. "pagePath": "pages/home/home",
  92. "iconPath": "static/home.png",
  93. "selectedIconPath": "static/home_active.png",
  94. "text": "首页"
  95. }, {
  96. "pagePath": "pages/type/type",
  97. "iconPath": "static/type.png",
  98. "selectedIconPath": "static/type_active.png",
  99. "text": "分类"
  100. }, {
  101. "pagePath": "pages/shop/shop",
  102. "iconPath": "static/shop.png",
  103. "selectedIconPath": "static/shop_active.png",
  104. "text": "购物车"
  105. }, {
  106. "pagePath": "pages/my/my",
  107. "iconPath": "static/my.png",
  108. "selectedIconPath": "static/my_active.png",
  109. "text": "我的"
  110. }]
  111. },
  112. "uniIdRouter": {}
  113. }