Component({ data: { selected: 1, color: "#8E9397", selectedColor: "#16b5cb", list: [ { pagePath: "/station/list/index", text: "列表", iconPath: "/images/tabbar/minitorUnActive.png", selectedIconPath: "/images/tabbar/minitorActive.png" }, { pagePath: "/workDesktop/index/index", text: "工作", iconPath: "/images/tabbar/workDesktopUnActive.png", selectedIconPath: "/images/tabbar/workDesktopActive.png" }, { pagePath: "/map/index", text: "地图", iconPath: "/images/tabbar/mapUnActive.png", selectedIconPath: "/images/tabbar/mapActive.png" }, { pagePath: "/mine/index/index", text: "我的", iconPath: "/images/tabbar/mineUnActive.png", selectedIconPath: "/images/tabbar/mineActive.png" } ] }, attached() { }, methods: { switchTab(e) { console.log(e,37) const data = e.currentTarget.dataset const url = data.path this.setData({ selected: data.index }) console.log(this.data.selected,43) wx.switchTab({url}) } } })