cardlist.js 483 B

1234567891011121314151617181920212223
  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. onShareAppMessage: function () {
  14. return {
  15. title: app.globalData.ShareTitle,
  16. path: app.globalData.SharePath + '?UserID=' + app.globalData.userInfo.UserID,
  17. imageUrl: app.globalData.ShareImage,
  18. }
  19. },
  20. })