index.js 225 B

123456789101112131415
  1. Page({
  2. data: {
  3. },
  4. onLoad(options) {
  5. },
  6. onShow() {
  7. if (typeof this.getTabBar === 'function') {
  8. this.getTabBar().setData({
  9. selected: 0
  10. })
  11. }
  12. },
  13. })