cu-tabBar.js 811 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. Component({
  2. options: {
  3. addGlobalClass: true,
  4. },
  5. properties:{
  6. selected:Number
  7. },
  8. data: {
  9. list: [
  10. {
  11. "pagePath": "/pages/index/index",
  12. "iconPath":"/img/navIcon1.png",
  13. "selectedIconPath": "/img/navIcon1_sec.png",
  14. "text": "首页"
  15. }, {
  16. "pagePath": "/pages/query/query",
  17. "iconPath":"/img/navIcon2.png",
  18. "selectedIconPath": "/img/navIcon2_sec.png",
  19. "text": "查询"
  20. }
  21. , {
  22. "pagePath":"/pages/my/my",
  23. "iconPath":"/img/navIcon3.png",
  24. "selectedIconPath": "/img/navIcon3_sec.png",
  25. "text": "我的"
  26. }
  27. ]
  28. },
  29. methods: {
  30. switchTab(e) {
  31. const url = e.currentTarget.dataset.path
  32. wx.switchTab({
  33. url
  34. })
  35. }
  36. },
  37. pageLifetimes: {
  38. }
  39. })