|
|
|
|
@ -48,20 +48,32 @@
|
|
|
|
|
#indexTreeMenu::-webkit-scrollbar{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.seal-result {
|
|
|
|
|
transform: rotate(-14deg);
|
|
|
|
|
transform: rotate(-36deg);
|
|
|
|
|
/* border: solid 2px #ddd; */
|
|
|
|
|
border-radius: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #37485061;
|
|
|
|
|
font-size: 1vw;
|
|
|
|
|
color: #ed1a001a;
|
|
|
|
|
font-size: 2vw;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
line-height: 60px;
|
|
|
|
|
left: 6%;
|
|
|
|
|
top: 64%;
|
|
|
|
|
left: 35vw;
|
|
|
|
|
top: 24vw;
|
|
|
|
|
position: absolute;
|
|
|
|
|
/* background-color: rgba(255, 255, 255, 0.8); */
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
display: none;
|
|
|
|
|
letter-spacing: 2vw;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.newlogoContent{
|
|
|
|
|
width: 90%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
<%
|
|
|
|
|
@ -89,6 +101,8 @@
|
|
|
|
|
<body class="hold-transition skin-blue sidebar-mini" onkeydown="disabledPrint()">
|
|
|
|
|
<input type="hidden" id="token" value="<%=token%>"/>
|
|
|
|
|
<input type="hidden" id="roleId" value="${CURRENT_USER.roleId}"/>
|
|
|
|
|
<input type="hidden" id="hospitalName" value="<%=hospitalName%>">
|
|
|
|
|
|
|
|
|
|
<!--webSocket所需-->
|
|
|
|
|
<input type="hidden" id="userId" value="${CURRENT_USER.userId}"/>
|
|
|
|
|
<input type="hidden" id="userName" value="${CURRENT_USER.userName}"/>
|
|
|
|
|
@ -103,21 +117,26 @@
|
|
|
|
|
<div class="wrapper">
|
|
|
|
|
<header class="main-header">
|
|
|
|
|
<!--logo-->
|
|
|
|
|
<%-- <div class=" logo">--%>
|
|
|
|
|
<%-- <%–<div class="pull-left image" style="align-content: baseline;">--%>
|
|
|
|
|
<%-- <img src="${path}/static/bootstrap-3.3.7/dist/img/credit/paypal.png"--%>
|
|
|
|
|
<%-- style="height:70%;width: 70%;margin-top:0.25rem;"--%>
|
|
|
|
|
<%-- class="user-image" alt="User Image">--%>
|
|
|
|
|
<%-- </div>–%>--%>
|
|
|
|
|
<%-- <div class="pull-left info" style="width: 100%;">--%>
|
|
|
|
|
<%-- <p>病案数码影像信息管理系统</p>--%>
|
|
|
|
|
<%-- </div>--%>
|
|
|
|
|
<%-- </div>--%>
|
|
|
|
|
<div class="logo">
|
|
|
|
|
<%--<div class="pull-left image" style="align-content: baseline;">
|
|
|
|
|
<img src="${path}/static/bootstrap-3.3.7/dist/img/credit/paypal.png"
|
|
|
|
|
style="height:70%;width: 70%;margin-top:0.25rem;"
|
|
|
|
|
class="user-image" alt="User Image">
|
|
|
|
|
</div>--%>
|
|
|
|
|
<div class="pull-left info" style="width: 100%">
|
|
|
|
|
<p>病案数码影像信息管理系统</p>
|
|
|
|
|
<div class="newlogoContent">
|
|
|
|
|
<p id="logoTitleName">病案数码影像信息管理系统</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<nav class="navbar navbar-static-top">
|
|
|
|
|
<a href="#" class="sidebar-toggle" data-toggle="push-menu" role="button">
|
|
|
|
|
<span class="sr-only">Toggle navigation</span>
|
|
|
|
|
</a>
|
|
|
|
|
<%-- <div class="seal-result"><%= hospitalName %></div>--%>
|
|
|
|
|
<%-- <div class="seal-result" id="hospitalNameWater"></div>--%>
|
|
|
|
|
<div class="navbar-custom-menu">
|
|
|
|
|
<ul class="nav navbar-nav">
|
|
|
|
|
<li class="user user-menu">
|
|
|
|
|
@ -284,6 +303,12 @@
|
|
|
|
|
const windowHeight = $(window).height();
|
|
|
|
|
$("#iFrame1").css("height", windowHeight - headerHeight - footerHeight - 37);
|
|
|
|
|
$("#indexTreeMenu").css("height",windowHeight - headerHeight);
|
|
|
|
|
|
|
|
|
|
const hospitalName = $("#hospitalName").val();
|
|
|
|
|
if(hospitalName != '' && hospitalName != null && hospitalName != undefined){
|
|
|
|
|
$("#hospitalNameWater").css('display','block')
|
|
|
|
|
$("#hospitalNameWater").html(hospitalName)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
|