1234567891011121314151617181920212223242526272829303132 |
- // pages/Components/switchTab/switchTab.js
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- arr:{
- type: Array,
- value: []
- }
- },
- /**
- * 组件的初始数据
- */
- data: {
- curIndex: 0,
- },
- /**
- * 组件的方法列表
- */
- methods: {
- getSwitch:function(e){
- const val = e.target.dataset.index
- this.triggerEvent("changeIndex",val)
- this.setData({
- curIndex: e.target.dataset.index
- })
- },
- }
- })
|