Initial project files: BESCMS full source
This commit is contained in:
@@ -0,0 +1,67 @@
|
||||
{template "header.html"}
|
||||
|
||||
<div class="module-content" style="margin-top:-20px">
|
||||
|
||||
<iframe class="myiframe" name="contentright" id="module-content-right" src="{$url}&cache={SYS_TIME}" url="{$url}&cache={SYS_TIME}" frameborder="false" scrolling="auto" style="border:none; margin-bottom:0px;" width="100%" height="auto" allowtransparency="true"></iframe>
|
||||
|
||||
</div>
|
||||
<style>
|
||||
.page-content-wrapper .page-content {
|
||||
padding: 25px 0px 10px 20px;
|
||||
}
|
||||
</style>
|
||||
<script type="text/javascript">
|
||||
|
||||
function McLink(dir, url) {
|
||||
|
||||
// 延迟提示
|
||||
//var admin_loading = layer.load(2, { time: 10000 });
|
||||
$('.iframe_menu_a a').removeClass('on');
|
||||
$('#iframe_menu_a_'+dir+' a').addClass('on');
|
||||
|
||||
|
||||
//$('.my-left-content li span').removeClass('selected');
|
||||
//$('.my-left-content li').removeClass('active open');
|
||||
|
||||
/// $('.my-left-content2 li span').removeClass('selected');
|
||||
//$('.my-left-content2 li').removeClass('active open');
|
||||
|
||||
//$('.left-content-'+dir+' ').addClass('active open');
|
||||
// $('.left-content-'+dir+' span').addClass('selected');
|
||||
|
||||
|
||||
$("#module-content-right").attr('src', url);
|
||||
$("#module-content-right").attr("url", url);
|
||||
}
|
||||
|
||||
function wSize(){
|
||||
var str=getWindowSize();
|
||||
var strs= new Array(); //定义一数组
|
||||
strs=str.toString().split(","); //字符分割
|
||||
var heights = strs[0]-$('.page-bar').height(),Body = $('body');
|
||||
$('#module-content-right').height(heights);
|
||||
}
|
||||
|
||||
var getWindowSize = function(){
|
||||
return ["Height","Width"].map(function(name){
|
||||
return window["inner"+name] ||
|
||||
document.compatMode === "CSS1Compat" && document.documentElement[ "client" + name ] || document.body[ "client" + name ]
|
||||
});
|
||||
}
|
||||
window.onload = function (){
|
||||
if(!+"\v1" && !document.querySelector) { // for IE6 IE7
|
||||
document.body.onresize = resize;
|
||||
} else {
|
||||
window.onresize = resize;
|
||||
}
|
||||
function resize() {
|
||||
wSize();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
$(function(){
|
||||
wSize();
|
||||
document.documentElement.style.overflowY = 'hidden'
|
||||
});
|
||||
</script>
|
||||
{template "footer.html"}
|
||||
Reference in New Issue
Block a user