// 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 }) }, } })