welcome.js 564 B

123456789101112131415161718192021222324252627282930
  1. const APP = getApp();
  2. Page({
  3. /**
  4. * 生命周期函数--监听页面加载
  5. */
  6. onLoad: function (options) {
  7. this.login();
  8. },
  9. /**
  10. * 登录
  11. */
  12. login: function () {
  13. wx.login({
  14. success: res => {
  15. const params = {
  16. code: res.code
  17. }
  18. //登录
  19. APP.Post(APP.Url.login, params).then(res => {
  20. APP.globalData.openId = res.data.userId;
  21. APP.globalData.openNum = res.data.openNum;
  22. })
  23. wx.switchTab({
  24. url: '/pages/index/index',
  25. })
  26. }
  27. })
  28. }
  29. })