apps/com.actionsoft.apps.coe.pal.publisher/template/page/publish.client.sso.manage.home.html
2022-07-20 13:59:04 +08:00

79 lines
2.9 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html style="height: 100%;">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Publisher Client Main</title>
<!-- js -->
<script type="text/javascript" src="../commons/js/jquery/scripts/jquery.js"></script>
<script type="text/javascript" src="../commons/js/awsui.js"></script>
<!-- css -->
<link rel="stylesheet" href="../commons/css/awsui.css">
<script type="text/javascript">
var wsId = "<#wsId>";
var data = <#treeData>;
$(document).ready(function(){
parent.$(".header").css({"width": "300px"});
var flag = true;
if(screen.width==1024){
//flag = false;
}
//layout配置
$(window).layout({
head:{
target:"#simple-head",
height:"50px"
},
left:{
target:"#simple-left",
title:"<input id='queryInput' type='text' placeholder='快速定位' class='txt bottom_border_input' style='height:16px;margin:4px 0px;'/>"
},
right:{
target:"#simple-right"
},
separater:{
target:"#simple-layout-separater",
width:0
}
});
$("#queryInput").myAutoInput("./w");
$(window).trigger('resize');
});
$(window).resize(function(){
//设置tree外层div高度以设置滚动条
$("#repositoryTree").parent().height($(window).height() - 80);
})
</script>
<script type="text/javascript" src="../apps/com.actionsoft.apps.coe.pal.publisher/js/publish.manage.home.js"></script>
<script src="../apps/com.actionsoft.apps.coe.pal.publisher/js/coe.pal.processlevel.main.autoajax.js"></script>
</head>
<body style='background-color: #F1F2F4'>
<div id="simple-left" style="width:220px; background-color: #F1F2F4;">
<div style="padding:10px 3px 0px 3px;width:215px;overflow:auto;">
<ul id="repositoryTree" style="overflow:visible"></ul>
</div>
</div>
<div id="simple-layout-separater"></div>
<div id="simple-right">
<iframe id="disignerIframe" uuid="" allowfullscreen="true" webkitallowfullscreen="true" frameborder="0" height="100%" width="100%" class="awsui-layout-iframe" src=""></iframe>
</div>
<div id="moveDialog" style="width:300px; height:140px; display:none;" class="dlg-content awsui-ux">
<div style="width:300px; height:38px;">
<input class="awsui-radio" checked="checked" name="radiox1" id="moveInnerFirst" value="moveInnerFirst" type="radio">
<label class="awsui-radio-label" for="moveInnerFirst" id="label1">放入目标文件内部第一个位置</label>
<br>
<input class="awsui-radio" name="radiox1" id="moveInsertBelow" value="moveInsertBelow" type="radio">
<label class="awsui-radio-label" for="rdo2" id="label2">放入目标文件后面(与目标文件同级)</label>
</div>
</div>
<input type="hidden" name="sid" id="sid" value="<#sid>" />
<input type="hidden" name="wsId" id="wsId" value="<#wsId>" />
<ul id="contextMenu" class="awsui-menu"></ul>
</body>
</html>