invite.js 466 B

12345678910111213141516171819202122
  1. const util = require("../../../utils/util.js");
  2. const app = getApp();
  3. Page({
  4. data: {
  5. invitePrice: util.config.invitePrice
  6. },
  7. goInvite(e) {
  8. if (util.isObjEmpty(app.globalData.userInfo)) {
  9. // 静默登录
  10. let that = this
  11. util.silentLogin().then(res => {
  12. wx.reLaunch({
  13. url: e.currentTarget.dataset.url,
  14. })
  15. })
  16. } else {
  17. wx.reLaunch({
  18. url: e.currentTarget.dataset.url,
  19. })
  20. }
  21. }
  22. })