index.js 620 B

123456789101112131415161718192021222324252627
  1. Component({
  2. data: {
  3. selected: '',
  4. color: "#1F243A",
  5. selectedColor: "#E3B377",
  6. list: [],
  7. },
  8. lifetimes: {
  9. // 生命周期函数,可以为函数,或一个在methods段中定义的方法名
  10. attached: function () {},
  11. moved: function () { },
  12. detached: function () { },
  13. },
  14. pageLifetimes: {
  15. // 组件所在页面的生命周期函数
  16. show: function () { },
  17. hide: function () { },
  18. resize: function () { },
  19. },
  20. methods: {
  21. switchTab(e) {
  22. const data = e.currentTarget.dataset;
  23. const url = "/" + data.path;
  24. wx.switchTab({ url });
  25. },
  26. },
  27. });