index.js 584 B

123456789101112131415161718192021222324252627282930
  1. import common from '../../utils/util';
  2. import main from '../../utils/main';
  3. const app = getApp();
  4. Page({
  5. data: {
  6. },
  7. onLoad: function (options) {
  8. var that = this;
  9. that.setData({
  10. Containnerheight: main.getWindowHeight(),
  11. });
  12. },
  13. goto:function(){
  14. wx.navigateTo({
  15. url: '../other/paycustom',
  16. });
  17. },
  18. onShareAppMessage: function () {
  19. return {
  20. title: app.globalData.ShareTitle,
  21. path: app.globalData.SharePath + '?UserID=' + app.globalData.userInfo.UserID,
  22. imageUrl: app.globalData.ShareImage,
  23. }
  24. },
  25. })