miaoguoreadme.js 470 B

12345678910111213141516171819202122
  1. import common from '../../utils/util';
  2. import server from '../../utils/main';
  3. const app = getApp();
  4. Page({
  5. data: {
  6. },
  7. onLoad: function (options) {
  8. this.setData({
  9. Containnerheight: common.getSystemHeight(),
  10. });
  11. },
  12. onShareAppMessage: function () {
  13. return {
  14. title: app.globalData.ShareTitle,
  15. path: app.globalData.SharePath + '?UserID=' + app.globalData.userInfo.UserID,
  16. imageUrl: app.globalData.ShareImage,
  17. }
  18. },
  19. })