pages.json 869 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "pages": [
  3. ],
  4. "tabBar": {
  5. "color": "#C0C4CC",
  6. "selectedColor": "#5DBC7C",
  7. "borderStyle": "black",
  8. "backgroundColor": "#ffffff",
  9. "list": [{
  10. "pagePath": "pages/index/index",
  11. "iconPath": "static/tabBar/tab-home.png",
  12. "selectedIconPath": "static/tabBar/tab-home-current.png",
  13. "text": "首页"
  14. },
  15. {
  16. "pagePath": "pages/category/category",
  17. "iconPath": "static/tabBar/tab-cate.png",
  18. "selectedIconPath": "static/tabBar/tab-cate-current.png",
  19. "text": "分类"
  20. },
  21. {
  22. "pagePath": "pages/cart/cart",
  23. "iconPath": "static/tabBar/tab-cart.png",
  24. "selectedIconPath": "static/tabBar/tab-cart-current.png",
  25. "text": "购物车"
  26. },
  27. {
  28. "pagePath": "pages/user/user",
  29. "iconPath": "static/tabBar/tab-my.png",
  30. "selectedIconPath": "static/tabBar/tab-my-current.png",
  31. "text": "我的"
  32. }
  33. ]
  34. }
  35. }