apps/com.actionsoft.apps.coe.pal/template/page/pal.pl.manage.modeldefinition.html
2022-06-27 23:38:56 +08:00

83 lines
2.4 KiB
HTML
Executable File

<!Doctype html><html xmlns=http://www.w3.org/1999/xhtml>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Welcome to AWSUI Index Page.</title>
<link rel="stylesheet" href="../commons/css/awsui.css"/>
<link rel="stylesheet" href="../commons/js/jquery/themes/default/ui/reference/jquery-ui.css">
<link type="text/css" rel="stylesheet" href="../apps/_bpm.platform/css/amc/console.admin.amc.public.css" />
<script src="../commons/js/jquery/scripts/jquery.js"></script>
<style type="text/css">
.head_height{
height:40px;
}
.treecls{
color:red;
}
body{
margin:0px;
overflow-x:hidden ;
}
.trBackgroud{
background-color: #EEEEEE;
}
th div{
padding: 4px 5px;
}
.listTable{
min-width:500px;
}
</style>
<script type="text/javascript">
function addCssToTr(obj){
$(obj).addClass("trBackgroud");
}
function removeCssFromTr(obj){
$(obj).removeClass("trBackgroud");
}
$(function(){
$(window).trigger('resize');
})
$(window).resize(function(){
$('#mainDiv').height($(window).height());
$('#listDiv').width($('#mainDiv').width() - 5).height($('#mainDiv').height() - 44);
$("#number").width(Math.round($('#mainDiv').width()*0.08));
$("#modelIcon").width(Math.round($('#mainDiv').width()*0.14));
$("#modelName").width(Math.round($('#mainDiv').width()*0.3));
$("#modelId").width(Math.round($('#mainDiv').width()*0.3));
$("#modelType").width(Math.round($('#mainDiv').width()*0.18));
})
</script>
</head>
<body>
<div id="mainDiv" style="width:100%;overflow:hidden;">
<div style="margin-left:0px;margin-right:0px;margin-top:0px; overflow:auto;">
<table id="listTable" class="listTable">
<tr>
<th id="number" style="text-align:center;"><div>序号</div></th>
<th id="modelIcon" style="text-align:center;"><div>模型图标</div></th>
<th id="modelName" style="text-align:left;"><div>模型名称</div></th>
<th id="modelId" style="text-align:left;"><div>模型ID</div></th>
<th id="modelType" style="text-align:left;"><div>类型</div></th>
</tr>
<tr>
<td colspan="5">
<div id="listDiv" style="overflow:auto;">
<table style="width:100%;" cellspacing=0 cellpadding=0 id='innerTable'>
<#content>
</table>
</div>
<td>
</tr>
</table>
</div>
</div>
<form action="">
<input type="hidden" id="wsId" name="wsId" value="<#wsuuid>"/>
<input type="hidden" id="sid" name="sid" value="<#sid>"/>
</form>
</body>
</html>