login.js 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. (function () {
  2. var page = {
  3. headColor:'#ffffff',
  4. init: function ($page) {
  5. var url = 'http://www.learun.cn/webapi';
  6. /*var getSecurityCode = function () {
  7. var moblieCode = $.trim($page.find('#account').val()).split('/')[0];
  8. var reg = /^(\+\d{2,3}\-)?\d{11}$/;
  9. if (reg.test(moblieCode)) {
  10. function request(d) { for (var c = location.search.slice(1).split("&"), a = 0; a < c.length; a++) { var b = c[a].split("="); if (b[0] == d) if ("undefined" == unescape(b[1])) break; else return unescape(b[1]) } return "" };
  11. var _fuid = request('fuid');
  12. var _data = {
  13. mobileCode: moblieCode,
  14. sourceUrl: "移动端" + _fuid
  15. };
  16. setPasswordTime();
  17. learun.http.get(url + '/securitycode', { loginMark: learun.deviceId(), data: JSON.stringify(_data) }, function (res) {
  18. if (res.code !== 200) {
  19. learun.layer.warning(res.info, function () { }, '提示', '关闭');
  20. }
  21. });
  22. }
  23. else {
  24. learun.layer.warning("请输入正确手机号码!", function () { }, '提示', '关闭');
  25. }
  26. };*/
  27. /*var _time = 60;
  28. function setPasswordTime() {
  29. var $this = $page.find('#login_password_btn');
  30. $this.text(_time + 's重新获取验证码');
  31. $this.unbind('tap');
  32. if (_time === 0) {
  33. $this.html('获取短信验证码');
  34. $this.on('tap', getSecurityCode);
  35. _time = 60;
  36. }
  37. else {
  38. _time--;
  39. setTimeout(setPasswordTime, 1000);
  40. }
  41. $this = null;
  42. }
  43. // 点击获取短信验证码
  44. $page.find('#login_password_btn').on('tap', getSecurityCode);
  45. */
  46. $page.find('#loginBtn').on('tap', function () {
  47. var account = $('#account').val();
  48. var password = $('#password').val();
  49. if(account == 'a'){
  50. learun.nav.go({ path: 'amap', title: '地图', type: 'right', isBack: false });
  51. }
  52. if (account === "") {
  53. learun.layer.warning('手机号不能为空!', function () { }, '提示', '关闭');
  54. } else if (password === "") {
  55. learun.layer.warning('密码不能为空!', function () { }, '提示', '关闭');
  56. } else {
  57. var data = {
  58. username: account,
  59. password: $.md5(password)
  60. };
  61. var postdata = {
  62. token: '',
  63. loginMark: learun.deviceId(),// 正式请换用设备号
  64. data: data
  65. };
  66. //console.log(postdata);
  67. var path = config.webapi;
  68. learun.layer.loading(true, "正在登录,请稍后");
  69. learun.http.post(config.webapi + "/?s=api/login", postdata, function(res) {
  70. //learun.http.post("/php/user/login.php", postdata, function(res) {
  71. learun.layer.loading(false);
  72. if (res === null) {
  73. learun.layer.warning('无法连接服务器,请检测网络!', function () { }, '提示', '关闭');
  74. return;
  75. }
  76. if (res.success === true) {
  77. var logininfo = {
  78. account: account,
  79. token: res.data.baseinfo.token,
  80. date: learun.date.format(new Date(), 'yyyy-MM-dd hh:mm:ss')
  81. };
  82. learun.storage.set('logininfo', logininfo);
  83. learun.storage.set('userinfo', res.data);
  84. learun.nav.go({ path: 'amap', title: '地图', type: 'right', isBack: false });
  85. //learun.http.get("http://www.learun.cn/webapi/info", { data: account.split('/')[0] }, function (_res) {
  86. /*learun.http.get("/php/webapi/info.php", { data: account.split('/')[0] }, function (_res) {
  87. $('#account').val('');
  88. $('#password').val('');
  89. if (_res.code === 200 && _res.data.EnabledMark == -1) {
  90. learun.nav.go({ path: 'info', isBack: false, title: '填写信息', param: account.split('/')[0]});
  91. }
  92. else {
  93. learun.tab.go('workspace');
  94. }
  95. });*/
  96. } else {
  97. learun.layer.warning(res.message, function () { }, '提示', '关闭');
  98. }
  99. });
  100. }
  101. });
  102. }
  103. };
  104. return page;
  105. })();