wordlist.js 503 B

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