dev.js 818 B

123456789101112131415161718192021222324252627282930
  1. const util = require('../utils/util.js');
  2. const app = getApp();
  3. Page({
  4. login(e) {
  5. let data = e.detail.value, that = this;
  6. if (util.isEmpty(data.loginName) || util.isEmpty(data.password)) {
  7. util.showTips("请输入手机号和密码。");
  8. return false;
  9. }
  10. if (util.isPhone(data.loginName)) {
  11. util.showTips("请输入正确的手机号。");
  12. return false;
  13. }
  14. console.log(data)
  15. util.ajax({
  16. func: 'login/dev',
  17. data: data
  18. }, (res) => {
  19. if (res.code == 0) {
  20. res.data.role = util.userRole(Math.round(res.data.score));
  21. app.globalData.userInfo = res.data;
  22. wx.setStorageSync("WXuserInfo", res.data);
  23. wx.reLaunch({
  24. url: '/pages/home/index'
  25. })
  26. } else
  27. util.showTips(res.reason);
  28. });
  29. }
  30. })