login.js 379 B

12345678910111213141516
  1. function loginMsg(res) {
  2. wx.setStorageSync('account_list', res.account_list)
  3. if (res.account_list.length == 1) {
  4. wx.setStorageSync('userMsg', res.account_list[0])
  5. wx.switchTab({
  6. url: '/pages/tabbar/home/index'
  7. })
  8. } else {
  9. wx.redirectTo({
  10. url: './selectSite',
  11. })
  12. }
  13. }
  14. module.exports = {
  15. loginMsg
  16. }