C端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
211 B

  1. Component({
  2. pageLifetimes: {
  3. show() {
  4. if (typeof this.getTabBar === 'function' &&
  5. this.getTabBar()) {
  6. this.getTabBar().setData({
  7. selected: 0
  8. })
  9. }
  10. }
  11. }
  12. })