const app = getApp() Component({ data: { selected: 0, color: "#999", selectedColor: "#F13A47", "list": [ { "pagePath": "/pages/index/index", "text": "首页", "iconPath": "/images/main/icon01.png", "selectedIconPath": "/images/main/icon01-a.png" }, { "pagePath": "/pages/message/message", "text": "消息", "iconPath": "/images/main/icon02.png", "selectedIconPath": "/images/main/icon02-a.png" }, { "pagePath": "/pages/my/my", "text": "我的", "iconPath": "/images/main/icon03.png", "selectedIconPath": "/images/main/icon03-a.png" } ] }, attached() { }, ready: function() { this.setData({ selected: app.globalData.selected }) }, methods: { switchTab(e) { // console.log(e); const data = e.currentTarget.dataset; const url = data.path; app.globalData.selected = data.index; wx.switchTab({url}) } } })