login.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. import '../style/style';
  2. import '../style/login';
  3. import $ from 'jquery';
  4. import { fail } from 'assert';
  5. let code = '';
  6. let num = 10;
  7. let flag = true;
  8. $('.jurisdiction').hide();
  9. if(window.localStorage.getItem('uid')) {
  10. $('.login').hide();
  11. $('.jurisdiction').show();
  12. }
  13. $('#sendCode').click(function () {
  14. const phoneNum = $('#phoneNum').val().replace(/\s/ig,'');
  15. if(proving(phoneNum) && flag) {
  16. // 调用获取验证码接口
  17. $.get(`${process.env.BASE_API}sharedWhiteBoard/wx/user/sendMag`, {
  18. phoneNum
  19. }, function (res) {
  20. if(res.code == 200) {
  21. code = res.data;
  22. time();
  23. }
  24. });
  25. }
  26. })
  27. $('#login').click(function () {
  28. const mobile = $('#phoneNum').val().replace(/\s/ig,'');
  29. const sign = $('#phoneCode').val().replace(/\s/ig,'');
  30. // if(sign == code) {
  31. if(proving(mobile)) {
  32. $.ajax({
  33. url:`${process.env.BASE_API}sharedWhiteBoard/wx/user/loginByPhone`,
  34. type: 'POST',
  35. data: JSON.stringify({
  36. mobile,
  37. sign
  38. }),
  39. contentType: "application/json",
  40. dataType: "json",
  41. success: function (res) {
  42. console.log(res)
  43. if(res.code == 200) {
  44. console.log(res.data.id)
  45. window.localStorage.setItem('uid', res.data.id);
  46. $('.login').hide();
  47. $('.jurisdiction').show();
  48. }else if (res.code == 600) {
  49. console.log(res.message);
  50. alert(res.message)
  51. }
  52. }
  53. });
  54. }
  55. // }else {
  56. // alert('验证码错误')
  57. // }
  58. })
  59. //创建远程观看
  60. $('#ok').click(function () {
  61. const title = $('#title').val().replace(/\s/ig,'');
  62. const code = $('.auth-code').val().replace(/\s/ig,'');
  63. const uid = window.localStorage.getItem('uid');
  64. if(!title) {
  65. alert('请输入分会场名称')
  66. return;
  67. }
  68. if(!code) {
  69. alert('请输入授权码')
  70. return;
  71. }
  72. $.ajax({
  73. url:`${process.env.BASE_API}sharedWhiteBoard/shareJoin`,
  74. type: 'POST',
  75. data: JSON.stringify({
  76. uid,
  77. title,
  78. code
  79. }),
  80. contentType: "application/json",
  81. dataType: "json",
  82. success: function (res) {
  83. if(res.code == 200) {
  84. const shareTask = JSON.stringify(res.data);
  85. window.sessionStorage.setItem('dataList', shareTask);
  86. window.location.href="./index.html"
  87. }else if (res.code == 600) {
  88. console.log(res.message)
  89. alert(res.message)
  90. }
  91. }
  92. });
  93. })
  94. // 倒计时
  95. const time = function () {
  96. setTimeout(function () {
  97. flag = false;
  98. $('#sendCode').html(`${num}秒后重新发送`).addClass('color');
  99. num--;
  100. if(num > 0) {
  101. time();
  102. }else {
  103. num = 10;
  104. flag = true;
  105. $('#sendCode').html('发送验证码').removeClass('color')
  106. }
  107. },1000)
  108. }
  109. // 验证手机号码
  110. const proving = (phone) => {
  111. // 手机号正则
  112. const telStr = /^[1](([3][0-9])|([4][5-9])|([5][0-3,5-9])|([6][5,6])|([7][0-8])|([8][0-9])|([9][1,8,9]))[0-9]{8}$/;
  113. if (!(telStr.test(phone))) {
  114. alert('手机号码输入不规范');
  115. return false;
  116. }
  117. return true;
  118. }