wujingjing
2024-08-09 fc3906e080b2204648ee83ee9a1db1584f818f4e
1
2
3
4
5
6
7
8
9
10
11
12
export const selectCurrentTabBehavior = Behavior({
  pageLifetimes: {
    show() {
      if (typeof this.getTabBar === 'function' &&
        this.getTabBar()) {
        this.getTabBar().setData({
          selected: 0
        })
      }
    }
  }
})