depoSuce.js 563 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. var app = getApp()
  2. Page({
  3. data: {
  4. img:app.globalData.imgUrl
  5. },
  6. onLoad: function (options) {
  7. },
  8. goHome(){
  9. if(app.globalData.compatible){
  10. wx.reLaunch({
  11. url: '/pages/compatible/index/index',
  12. })
  13. }else{
  14. wx.reLaunch({
  15. url: '/pages/index/index',
  16. })
  17. }
  18. },
  19. onReady: function () {
  20. },
  21. onShow: function () {
  22. },
  23. onHide: function () {
  24. },
  25. onUnload: function () {
  26. },
  27. onPullDownRefresh: function () {
  28. },
  29. onReachBottom: function () {
  30. },
  31. onShareAppMessage: function () {
  32. }
  33. })