From e7c6dcf0d535cb499c6fd7371b98a1eeac0cb9b7 Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 13 Feb 2017 01:10:16 -0500 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0focus=E5=8A=A8=E7=94=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/admin/controller/Login.php | 2 +- public/static/admin/plugs.js | 83 +++++++++++++++++--------- 2 files changed, 55 insertions(+), 30 deletions(-) diff --git a/application/admin/controller/Login.php b/application/admin/controller/Login.php index 259d4bc2d..aec8a2177 100644 --- a/application/admin/controller/Login.php +++ b/application/admin/controller/Login.php @@ -30,7 +30,7 @@ class Login extends Controller { empty($user) && $this->error('登录账号不存在,请重新输入!'); ($user['password'] !== md5($password)) && $this->error('登录密码与账号不匹配,请重新输入!'); session('user', $user); - $this->error('登录成功,正在进入系统...'); + $this->success('登录成功,正在进入系统...', '@admin'); } } diff --git a/public/static/admin/plugs.js b/public/static/admin/plugs.js index 0b080cd10..1f32161ea 100644 --- a/public/static/admin/plugs.js +++ b/public/static/admin/plugs.js @@ -15,9 +15,24 @@ define(['zeroclipboard', 'jquery', 'layui'], function (ZeroClipboard) { fix: function () { $(':input[placeholder]').map(function () { var self = $(this), txt = self.attr('placeholder'); - self.wrap($('
').css({position: 'relative', zoom: '1', border: 'none', background: 'none', padding: 'none', margin: 'none'})); + self.wrap($('
').css({ + position: 'relative', + zoom: '1', + border: 'none', + background: 'none', + padding: 'none', + margin: 'none' + })); var pos = self.position(), h = self.outerHeight(true), paddingleft = self.css('padding-left'); - var holder = $('').text(txt).css({position: 'absolute', left: pos.left, top: pos.top, height: h, lineHeight: h + 'px', paddingLeft: paddingleft, color: '#aaa'}).appendTo(self.parent()); + var holder = $('').text(txt).css({ + position: 'absolute', + left: pos.left, + top: pos.top, + height: h, + lineHeight: h + 'px', + paddingLeft: paddingleft, + color: '#aaa' + }).appendTo(self.parent()); self.on('focusin focusout change keyup', function () { self.val() ? holder.hide() : holder.show(); }); @@ -82,7 +97,14 @@ define(['zeroclipboard', 'jquery', 'layui'], function (ZeroClipboard) { */ msg.prototype.success = function (msg, time, callback) { this.close(); - return this.index = layer.msg(msg, {icon: 1, shade: this.shade, scrollbar: false, end: callback, time: (time || 2) * 1000, shadeClose: true}); + return this.index = layer.msg(msg, { + icon: 1, + shade: this.shade, + scrollbar: false, + end: callback, + time: (time || 2) * 1000, + shadeClose: true + }); }; /** @@ -93,7 +115,14 @@ define(['zeroclipboard', 'jquery', 'layui'], function (ZeroClipboard) { */ msg.prototype.error = function (msg, time, callback) { this.close(); - return this.index = layer.msg(msg, {icon: 2, shade: this.shade, scrollbar: false, time: (time || 3) * 1000, end: callback, shadeClose: true}); + return this.index = layer.msg(msg, { + icon: 2, + shade: this.shade, + scrollbar: false, + time: (time || 3) * 1000, + end: callback, + shadeClose: true + }); }; /** @@ -105,7 +134,12 @@ define(['zeroclipboard', 'jquery', 'layui'], function (ZeroClipboard) { */ msg.prototype.tips = function (msg, time, callback) { this.close(); - return this.index = layer.msg(msg, {time: (time || 3) * 1000, shade: this.shade, end: callback, shadeClose: true}); + return this.index = layer.msg(msg, { + time: (time || 3) * 1000, + shade: this.shade, + end: callback, + shadeClose: true + }); }; /** @@ -127,7 +161,7 @@ define(['zeroclipboard', 'jquery', 'layui'], function (ZeroClipboard) { */ msg.prototype.auto = function (data, time) { var self = this; - if (data.code === 0) { + if (data.code === 1) { self.success(data.msg, time, function () { if (data.url === 'back') { window.history.back(); @@ -330,7 +364,14 @@ define(['zeroclipboard', 'jquery', 'layui'], function (ZeroClipboard) { * @returns {unresolved} */ _form.prototype.iframe = function (url, title) { - return layer.open({title: title || '窗口', type: 2, area: ['800px', '530px'], fix: true, maxmin: false, content: url}); + return layer.open({ + title: title || '窗口', + type: 2, + area: ['800px', '530px'], + fix: true, + maxmin: false, + content: url + }); }; /** @@ -400,27 +441,6 @@ define(['zeroclipboard', 'jquery', 'layui'], function (ZeroClipboard) { return (attrProp !== undefined && attrProp !== null && attrProp !== false) }; - /** - * 设置文件选择范围 - * @param {type} ele - * @param {type} start - * @param {type} end - * @returns {validate_L1.validate.prototype} - */ - validate.prototype.selectRange = function (ele, start, end) { - if (ele.createTextRange) { - var range = ele.createTextRange(); - range.collapse(true); - range.moveEnd('character', end); - range.moveStart('character', start); - range.select(); - } else { - //ele.focus(); - ele.setSelectionRange(start, end); - } - return this; - }; - /** * 判断表单元素是否为空 * @param {type} ele @@ -614,7 +634,12 @@ define(['zeroclipboard', 'jquery', 'layui'], function (ZeroClipboard) { */ validate.prototype.insertErrorEle = function (ele) { var $html = $(''); - $html.css({top: $(ele).position().top + 'px', paddingTop: $(ele).css('paddingTop'), paddingBottom: $(ele).css('paddingBottom'), lineHeight: $(ele).css('lineHeight')}); + $html.css({ + top: $(ele).position().top + 'px', + paddingTop: $(ele).css('paddingTop'), + paddingBottom: $(ele).css('paddingBottom'), + lineHeight: $(ele).css('lineHeight') + }); $(ele).data('input-info') || $(ele).data('input-info', $html.insertAfter(ele)); };