tabbar.js 840 B

123456789101112131415161718192021222324252627282930
  1. export default {
  2. color: "#161616",
  3. selectedColor: "#F65486",
  4. borderStyle: "black",
  5. backgroundColor: "#ffffff",
  6. list: [{
  7. "pagePath": "pages/index/index",
  8. "iconPath": "static/tabBar/tab-home.png",
  9. "selectedIconPath": "static/tabBar/tab-home-current.png",
  10. "text": "首页"
  11. },
  12. {
  13. "pagePath": "pages/index/store",
  14. "iconPath": "/static/tabBar/kc.png",
  15. "selectedIconPath": "static/tabBar/kcaction.png",
  16. "text": "积分商城"
  17. },
  18. {
  19. "pagePath": "pages/znkf/index",
  20. "iconPath": "static/tabBar/tab-xxjl.png",
  21. "selectedIconPath": "static/tabBar/tab-xxjl-current.png",
  22. "text": "智能客服"
  23. },
  24. {
  25. "pagePath": "pages/userhome/user",
  26. "iconPath": "static/tabBar/tab-my.png",
  27. "selectedIconPath": "static/tabBar/tab-my-current.png",
  28. "text": "我的"
  29. }]
  30. }