earnings_list.js 563 B

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