12345678910111213141516171819202122232425262728293031 |
- 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 () {
- },
- })
|