index.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. const util = require('../../../utils/util.js');
  2. const app = getApp();
  3. Page({
  4. data: {
  5. isRecomClick: 1,
  6. userInfo: app.globalData.userInfo
  7. },
  8. onShow() {
  9. this.setData({ userInfo: app.globalData.userInfo });
  10. this.isRecomCode();
  11. },
  12. isRecomCode() {
  13. let that = this, userInfo = app.globalData.userInfo;
  14. util.ajax({
  15. func: "user/inviter/code",
  16. load: false
  17. }, function (res) {
  18. if (res.code == 0) {
  19. userInfo.recomCode = !util.isEmpty(res.data.inviterCode) ? res.data.inviterCode : userInfo.recomCode;
  20. wx.setStorageSync("WXuserInfo", userInfo);
  21. that.setData({ isRecomClick: (res.data.show == 0 && util.isEmpty(res.data.inviterCode) ? 0 : 1) });
  22. }
  23. });
  24. },
  25. logout() {
  26. let self = this;
  27. wx.showModal({
  28. content: '确定登出吗?',
  29. success: function (res) {
  30. if (res.confirm) {
  31. util.ajax({
  32. func: "login_out"
  33. }, function (res) {
  34. if (res.code == 0) {
  35. wx.removeStorageSync("WXuserInfo");
  36. app.globalData.userInfo = null;
  37. wx.redirectTo({
  38. url: '/pages/home/login?quitLogin=true'
  39. })
  40. } else
  41. util.showTips(res.reason);
  42. });
  43. }
  44. }
  45. });
  46. },
  47. navigatorURl(e) {
  48. util.navigator(e.currentTarget.dataset.url);
  49. },
  50. })