mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
更新UI基础组件
This commit is contained in:
parent
06cb7133b6
commit
941e537d13
@ -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>
|
||||||
|
@ -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();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user