2023-10-12 09:38:58 +08:00

27 lines
513 B
JavaScript

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