用户列表选择样式优化

This commit is contained in:
thinkgem
2023-08-01 11:26:55 +08:00
parent f63a2757b6
commit e6ce5206a4
6 changed files with 6 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ var skinName = cookie('skinName', false, defaultSkinName);
print('<'+'!DOC'+'TYPE html'+'><'+'html class="'+skinName+'"><'+'head'+'>');
include('/include/head.html', {title: text(title!)}){}
include('/themes/'+themeName+'/include/header.html', {libs: libs!, skinName: skinName!}){} %>
</head><body class="hold-transition ${bodyClass!}">
</head><body class="hold-transition ${bodyClass!} ${parameter.__layer! == 'true' ? 'layer' : ''}">
<% if (!@ListUtils.inString('layout', libs!)){ %>
<div class="wrapper">${layoutContent}</div>
<% }else{ %>${layoutContent}<% } %>

View File

@@ -195,7 +195,7 @@ selectNum = 0, dataGrid = $('#dataGrid').dataGrid({
],
// autoGridWidthFix: 100,
autoGridHeight: function(){
var height = $(window).height() - $('#searchForm').height() - $('#dataGridPage').height() - 70;
var height = $(window).height() - $('#searchForm').height() - $('#dataGridPage').height() - 78;
$('.tags-input').height($('.ui-jqgrid').height() - 10);
return height;
},

View File

@@ -81,7 +81,7 @@ selectNum = 0, dataGrid = $('#dataGrid').dataGrid({
}}
],
autoGridHeight: function(){
var height = $(window).height() - $('#searchForm').height() - $('#dataGridPage').height() - 74;
var height = $(window).height() - $('#searchForm').height() - $('#dataGridPage').height() - 78;
$('.tags-input').height($('.ui-jqgrid').height() - 10);
return height;
},