const app = getApp(); Page({ data: { CustomBar: app.globalData.CustomBar, }, onLoad: function (options) { }, onReady: function () { }, onShow: function () { if (!app.globalData._initState) { wx.switchTab({ url: '/pages/index/index' }); } }, onHide: function () { }, onUnload: function () { }, onPullDownRefresh: function () { }, onReachBottom: function () { }, })