index.js 1004 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. Component({
  2. data: {
  3. selected: '',
  4. color: "#7A7E83",
  5. selectedColor: "#409eff",
  6. list: [{
  7. "pagePath": "/pages/home/index",
  8. "iconPath": "/image/home1.png",
  9. "selectedIconPath": "/image/home2.png",
  10. "text": "首页"
  11. },
  12. {
  13. "pagePath": "/pages/reserve/index",
  14. "iconPath": "/image/reserve1.png",
  15. "selectedIconPath": "/image/reserve2.png",
  16. "text": "报餐"
  17. },
  18. {
  19. "pagePath": "/pages/news/index",
  20. "iconPath": "/image/news1.png",
  21. "selectedIconPath": "/image/news2.png",
  22. "text": "新闻"
  23. },
  24. {
  25. "pagePath": "/pages/my/index",
  26. "iconPath": "/image/my1.png",
  27. "selectedIconPath": "/image/my2.png",
  28. "text": "我的"
  29. }]
  30. },
  31. attached() {
  32. },
  33. methods: {
  34. switchTab(e) {
  35. const data = e.currentTarget.dataset
  36. const url = data.path
  37. wx.switchTab({ url })
  38. // wx.reLaunch({ url })
  39. // this.setData({
  40. // selected: data.index
  41. // })
  42. }
  43. }
  44. })