更新UI基础组件

This commit is contained in:
邹景立 2017-02-21 18:07:54 +08:00
parent 06cb7133b6
commit 941e537d13
2 changed files with 13 additions and 7 deletions

View File

@ -43,7 +43,7 @@
</a> </a>
</li> </li>
<li class="topbar-info-btn"> <li class="topbar-info-btn">
<a data-load="{:url('admin/login/out')}"> <a data-load="{:url('admin/login/out')}" data-confirm='确定要退出登录吗?'>
<span><i class="glyphicon glyphicon-log-out"></i> 退出登录</span> <span><i class="glyphicon glyphicon-log-out"></i> 退出登录</span>
</a> </a>
</li> </li>

View File

@ -2,7 +2,15 @@ define(['jquery', 'admin.plugs'], function () {
/** 事件委派 */ /** 事件委派 */
$('body').on('click', '[data-load]', function () { $('body').on('click', '[data-load]', function () {
$.form.load($(this).attr('data-load'), {}, 'GET', null, true, $(this).attr('data-tips')); var url = $(this).attr('data-load');
var tips = $(this).attr('data-tips');
function _goLoad() {
$.form.load(url, {}, 'GET', null, true, tips);
}
if ($(this).attr('data-confirm')) {
return $.msg.confirm($(this).attr('data-confirm'), _goLoad);
}
return _goLoad.call(this);
}).on('click', '[data-modal]', function () { }).on('click', '[data-modal]', function () {
return $.form.modal($(this).attr('data-modal'), 'open_type=modal'); return $.form.modal($(this).attr('data-modal'), 'open_type=modal');
}).on('click', '[data-open]', function () { }).on('click', '[data-open]', function () {
@ -13,8 +21,6 @@ define(['jquery', 'admin.plugs'], function () {
}).on('submit', 'form[data-form-href]', function () { }).on('submit', 'form[data-form-href]', function () {
var split = this.action.indexOf('?') === -1 ? '?' : '&'; var split = this.action.indexOf('?') === -1 ? '?' : '&';
window.location.href = '#' + parseUri(this.action + split + $(this).serialize()); window.location.href = '#' + parseUri(this.action + split + $(this).serialize());
}).on('click', '[data-back]', function () {
window.history.back();
}).on('click', '[data-reload]', function () { }).on('click', '[data-reload]', function () {
$.form.reload(); $.form.reload();
}).on('click', '[data-check-target]', function () { }).on('click', '[data-check-target]', function () {
@ -43,8 +49,8 @@ define(['jquery', 'admin.plugs'], function () {
window.location.href = href; window.location.href = href;
} }
}).on('click', '[data-file]', function () { }).on('click', '[data-file]', function () {
var type = $(this).attr('data-type') || 'image'; //jpg,png var type = $(this).attr('data-type') || 'jpg,png';
var field = $(this).attr('data-field') || type; var field = $(this).attr('data-field') || 'file';
var method = $(this).attr('data-one') ? 'one' : 'index'; var method = $(this).attr('data-one') ? 'one' : 'index';
var title = $(this).attr('data-title') || '文件管理'; var title = $(this).attr('data-title') || '文件管理';
var uptype = $(this).attr('data-uptype') || 'qiniu'; var uptype = $(this).attr('data-uptype') || 'qiniu';
@ -54,7 +60,7 @@ define(['jquery', 'admin.plugs'], function () {
$.form.iframe($(this).attr('data-iframe'), $(this).attr('data-title') || '窗口'); $.form.iframe($(this).attr('data-iframe'), $(this).attr('data-title') || '窗口');
}).on('click', '[data-icon]', function () { }).on('click', '[data-icon]', function () {
var field = $(this).attr('data-field') || 'icon'; var field = $(this).attr('data-field') || 'icon';
var url = window.ROOT_URL + '/index.php/plugs/icon.html?field=' + field; var url = window.ROOT_URL + '/index.php/admin/plugs/icon.html?field=' + field;
$.form.iframe(url, '图标选择'); $.form.iframe(url, '图标选择');
}).on('click', '[data-tips-image]', function () { }).on('click', '[data-tips-image]', function () {
var src = this.getAttribute('data-tips-image') || this.src, img = new Image(); var src = this.getAttribute('data-tips-image') || this.src, img = new Image();