parent
7a4791a3a2
commit
cab8f1520f
|
|
@ -40,8 +40,8 @@
|
|||
position: absolute;
|
||||
display: none;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
height: calc(100% - 45px) !important;
|
||||
top: 42px;
|
||||
z-index: 19;
|
||||
background-color: #fff
|
||||
}
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@ layui.define(['table', 'jquery', 'element', 'yaml','form', 'tab', 'menu', 'frame
|
|||
} else {
|
||||
bodyFrame = pearFrame.render({
|
||||
elem: 'content',
|
||||
title: '工作空间 / 首页',
|
||||
title: '首页',
|
||||
url: param.tab.index.href,
|
||||
width: '100%',
|
||||
height: '100%'
|
||||
|
|
|
|||
|
|
@ -53,13 +53,14 @@ layui.define(['table', 'jquery', 'element'], function (exports) {
|
|||
}
|
||||
|
||||
function createFrameHTML(option){
|
||||
var header = "<div class='pear-frame-title'><div class='dot'></div><div class='title'>"+option.title+"</div></div>"
|
||||
var iframe = "<iframe class='pear-frame-content' style='width:100%;height:100%;' scrolling='auto' frameborder='0' src='"+option.url+"' ></iframe>";
|
||||
var loading = '<div class="pear-frame-loading">'+
|
||||
'<div class="ball-loader">'+
|
||||
'<span></span><span></span><span></span><span></span>'+
|
||||
'</div>'+
|
||||
'</div></div>';
|
||||
$("#"+option.elem).html(iframe+loading);
|
||||
$("#"+option.elem).html("<div class='pear-frame'>"+header+iframe+loading+"</div>");
|
||||
}
|
||||
exports(MOD_NAME,new pearFrame());
|
||||
})
|
||||
Loading…
Reference in New Issue