index.js 205 B

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