welcome.js 560 B

12345678910111213141516171819202122232425262728293031
  1. const APP = getApp();
  2. Page({
  3. /**
  4. * 生命周期函数--监听页面加载
  5. */
  6. onLoad: function (options) {
  7. this.login();
  8. },
  9. /**
  10. * 登录
  11. */
  12. login() {
  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. wx.switchTab({
  23. url: '/pages/index/index',
  24. })
  25. })
  26. }
  27. })
  28. }
  29. })