login.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // +----------------------------------------------------------------------
  2. // | ThinkAdmin
  3. // +----------------------------------------------------------------------
  4. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  5. // +----------------------------------------------------------------------
  6. // | 官方网站: https://thinkadmin.top
  7. // +----------------------------------------------------------------------
  8. // | 开源协议 ( https://mit-license.org )
  9. // +----------------------------------------------------------------------
  10. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  11. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  12. // +----------------------------------------------------------------------
  13. $(function () {
  14. window.$body = $('body');
  15. /*! 后台加密登录处理 */
  16. $body.find('[data-login-form]').map(function (that) {
  17. (that = this), require(["md5"], function (md5) {
  18. $("form").vali(function (data) {
  19. data['password'] = md5.hash(md5.hash(data['password']) + data['uniqid']);
  20. $.form.load(location.href, data, "post", function (ret) {
  21. if (parseInt(ret.code) !== 1) {
  22. $(that).find('[data-captcha]').trigger('click');
  23. $(that).find('.verify.layui-hide').removeClass('layui-hide');
  24. }
  25. }, null, null, 'false');
  26. });
  27. });
  28. });
  29. /*! 登录图形验证码刷新 */
  30. $body.on('click', '[data-captcha]', function () {
  31. var $that = $(this), $form = $that.parents('form');
  32. var action = this.dataset.captcha || location.href;
  33. if (action.length < 5) return $.msg.tips('请设置验证码请求及验证地址');
  34. var type = this.dataset.captchaType || 'captcha-type', token = this.dataset.captchaToken || 'captcha-token';
  35. var uniqid = this.dataset.fieldUniqid || 'captcha-uniqid', verify = this.dataset.fieldVerify || 'captcha-verify';
  36. $.form.load(action, {type: type, token: token}, 'post', function (ret) {
  37. if (ret.code) {
  38. $that.html('<img alt="img" src="' + ret.data.image + '"><input type="hidden">').find('input').attr('name', uniqid).val(ret.data.uniqid || '');
  39. $form.find('[name="' + verify + '"]').attr('value', ret.data.code || '').val(ret.data.code || '');
  40. return (ret.data.code || $form.find('.verify.layui-hide').removeClass('layui-hide')), false;
  41. }
  42. }, false);
  43. });
  44. /*! 初始化登录图形 */
  45. $('[data-captcha]').map(function () {
  46. $(this).trigger('click');
  47. });
  48. });