switchTab.js 487 B

1234567891011121314151617181920212223242526272829303132
  1. // pages/Components/switchTab/switchTab.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. arr:{
  8. type: Array,
  9. value: []
  10. }
  11. },
  12. /**
  13. * 组件的初始数据
  14. */
  15. data: {
  16. curIndex: 0,
  17. },
  18. /**
  19. * 组件的方法列表
  20. */
  21. methods: {
  22. getSwitch:function(e){
  23. const val = e.target.dataset.index
  24. this.triggerEvent("changeIndex",val)
  25. this.setData({
  26. curIndex: e.target.dataset.index
  27. })
  28. },
  29. }
  30. })