1234567891011121314151617181920212223242526272829303132333435363738394041 |
- var app = getApp()
- Page({
- data: {
- img:app.globalData.imgUrl
- },
- onLoad: function (options) {
- },
- goHome(){
- if(app.globalData.compatible){
- wx.reLaunch({
- url: '/pages/compatible/index/index',
- })
- }else{
- wx.reLaunch({
- url: '/pages/index/index',
- })
- }
- },
- onReady: function () {
- },
- onShow: function () {
- },
- onHide: function () {
- },
- onUnload: function () {
- },
- onPullDownRefresh: function () {
- },
- onReachBottom: function () {
- },
- onShareAppMessage: function () {
-
- }
- })
|