mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]修复后台UI部分问题
This commit is contained in:
parent
d1d3b6dbf9
commit
ce578f6bda
@ -94,7 +94,7 @@ define(['jquery', 'admin.plugs'], function () {
|
||||
var method = $(this).attr('data-file') === 'one' ? 'one' : 'mtl';
|
||||
var type = $(this).attr('data-type') || 'jpg,png', field = $(this).attr('data-field') || 'file';
|
||||
var title = $(this).attr('data-title') || '文件上传', uptype = $(this).attr('data-uptype') || '';
|
||||
var url = window.ROOT_URL + '/index.php/admin/plugs/upfile/mode/' + method + '.html?mode=' + method + '&uptype=' + uptype + '&type=' + type + '&field=' + field;
|
||||
var url = window.ROOT_URL + '/index.php/admin/plugs/upfile.html?mode=' + method + '&uptype=' + uptype + '&type=' + type + '&field=' + field;
|
||||
$.form.iframe(url, title || '文件管理');
|
||||
});
|
||||
|
||||
@ -115,7 +115,8 @@ define(['jquery', 'admin.plugs'], function () {
|
||||
var img = new Image(), src = this.getAttribute('data-tips-image') || this.src;
|
||||
var imgWidth = this.getAttribute('data-width') || '480px';
|
||||
img.onload = function () {
|
||||
layer.open({type: 1, area: imgWidth, title: false, closeBtn: 1, skin: 'layui-layer-nobg', shadeClose: true, content: $(img).appendTo('body').css({background: '#fff', width: imgWidth, height: 'auto'}), end: function () {
|
||||
var $content = $(img).appendTo('body').css({background: '#fff', width: imgWidth, height: 'auto'});
|
||||
layer.open({type: 1, area: imgWidth, title: false, closeBtn: 1, skin: 'layui-layer-nobg', shadeClose: true, content: $content, end: function () {
|
||||
$(img).remove();
|
||||
}
|
||||
});
|
||||
@ -141,6 +142,7 @@ define(['jquery', 'admin.plugs'], function () {
|
||||
|
||||
/*! 后台菜单控制初始化 */
|
||||
$.menu.listen();
|
||||
|
||||
/*! 表单监听初始化 */
|
||||
$.validate.listen(this);
|
||||
|
||||
|
@ -354,6 +354,11 @@ define(['jquery'], function () {
|
||||
});
|
||||
$(form).bind("submit", function (event) {
|
||||
if (self.isAllpass($(this).find(self.tags), params) && typeof callback === 'function') {
|
||||
if (typeof CKEDITOR === 'object' && typeof CKEDITOR.instances === 'object') {
|
||||
for (var instance in CKEDITOR.instances) {
|
||||
CKEDITOR.instances[instance].updateElement();
|
||||
}
|
||||
}
|
||||
callback.call(this, $(form).serialize());
|
||||
}
|
||||
return event.preventDefault(), false;
|
||||
|
@ -15,8 +15,8 @@
|
||||
html{overflow:auto;overflow-y:scroll !important}
|
||||
body{min-width:1024px;font-size:12px;line-height:24px;font-family:'微软雅黑','Microsoft YaHei','Helvetica Neue', 'Luxi Sans', 'DejaVu Sans', 'Hiragino Sans GB',serif}
|
||||
a:hover{color:#039}a{color:#06C;cursor:pointer}input::-ms-clear{display:none}button{border-radius:0!important}label{font-size:100%;font-weight:500;margin-bottom:0}
|
||||
.block{display:block}.pointer{cursor:pointer}.help-block{margin-bottom:0}
|
||||
.inline-block{display:inline-block}.nowrap{white-space:nowrap !important}
|
||||
.block{display:block!important}.pointer{cursor:pointer!important}.help-block{margin-bottom:0}
|
||||
.inline-block{display:inline-block!important}.nowrap{white-space:nowrap !important}
|
||||
.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}
|
||||
.full-width{width:100% !important}.full-height{height:100% !important}
|
||||
|
||||
@ -60,6 +60,7 @@ table td .text-explode{color:#ccc!important;font-weight:normal!important;margin:
|
||||
/** 列表排序样式 */
|
||||
.list-table-image{width:22px;cursor:pointer}
|
||||
.list-table-sort-td{width:60px !important;text-align:center!important}
|
||||
.list-table-sort-td button{width:50px}
|
||||
.list-table-sort-td input{width:50px;text-align:center;font-size:12px;line-height:14px;padding:2px;border:1px solid #e6e6e6}
|
||||
.list-table-check-td{width:30px !important;text-align:center;padding:0}
|
||||
.list-table-check-td input{margin:0;vertical-align:middle}
|
||||
|
Loading…
x
Reference in New Issue
Block a user