login.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. $(function () {
  2. // 切换标签页
  3. function loginCut() {
  4. $('.login-label a').on('click', function (e) {
  5. $(this).addClass('that').siblings().removeClass('that');
  6. if ($(this).attr('id') === 'user') {
  7. $('.user-login').css({ 'display': 'block' }).siblings().css({ 'display': 'none' })
  8. } else if ($(this).attr('id') === 'CA') {
  9. $('.CA-login').css({ 'display': 'block' }).siblings().css({ 'display': 'none' })
  10. };
  11. })
  12. }
  13. layui.form.on('submit(userLogin)', function (data) {
  14. console.log(data.elem) //被执行事件的元素DOM对象,一般为button对象
  15. console.log(data.form) //被执行提交的form对象,一般在存在form标签时才会返回
  16. console.log(data.field) //当前容器的全部表单字段,名值对形式:{name: value}
  17. $.ajax({
  18. url: 'http://yun.eqbidding.com/web-back/login_back',
  19. type: 'get',
  20. dataType: 'json',
  21. data: data.field,
  22. success: function (data) {
  23. console.log(data)
  24. }
  25. })
  26. return false; //阻止表单跳转。如果需要表单跳转,去掉这段即可。
  27. });
  28. layui.form.on('submit(CALogin)', function (data) {
  29. console.log(data.elem) //被执行事件的元素DOM对象,一般为button对象
  30. console.log(data.form) //被执行提交的form对象,一般在存在form标签时才会返回
  31. console.log(data.field) //当前容器的全部表单字段,名值对形式:{name: value}
  32. $.ajax({
  33. url: 'http://yun.eqbidding.com/web-back//check_login_back_key',
  34. type: 'get',
  35. dataType: 'json',
  36. data: data.field,
  37. success: function (data) {
  38. console.log(data)
  39. }
  40. })
  41. return false; //阻止表单跳转。如果需要表单跳转,去掉这段即可。
  42. });
  43. (function () {
  44. loginCut();
  45. })()
  46. })