Component({ data: { selected: '1', color: "#7A7E83", selectedColor: "#3cc51f", tabBarList: [] }, attached() { console.log(JSON.parse(wx.getStorageSync('dynamicTabbar') || '[]') || []) const tabBarList = JSON.parse(wx.getStorageSync('dynamicTabbar') || '[]') || []; this.setData({ tabBarList }) }, methods: { switchTab(e) { const data = e.currentTarget.dataset const url = data.path wx.switchTab({ url }) // this.setData({ // selected: data.index // }) } } })