Page({ data: { currentTab: 0 }, switchTab(e) { const tab = e.currentTarget.dataset.tab; this.setData({ currentTab: parseInt(tab) }) } })