删除不必要的多余或备份文件
parent
7edf37a19c
commit
6d22d776ef
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,172 +0,0 @@
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
||||
<c:set var="path" value="${pageContext.request.contextPath}"/>
|
||||
<%@ include file="/WEB-INF/jspf/comm.jspf" %>
|
||||
<%@ include file="/WEB-INF/jspf/ztreeCommom.jsp" %>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>病案浏览</title>
|
||||
<meta http-equiv=X-UA-Compatible IE=EmulateIE7>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
||||
<link rel="shortcut icon" href="${path}/static/favicon.ico">
|
||||
<!--[if lt IE 9]>
|
||||
<script type="text/javascript" src="${path}/static/js/html5shiv.min.js"></script>
|
||||
<script type="text/javascript" src="${path}/static/js/jquery-1.11.3.min.js"></script>
|
||||
<script type="text/javascript" src="${path}/static/js/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<script>
|
||||
var path = "${path}";
|
||||
</script>
|
||||
<style type="text/css">
|
||||
body{
|
||||
width:100%;
|
||||
height:100%;
|
||||
margin:0;
|
||||
padding:0;
|
||||
background-color: #F2F2F2;
|
||||
}
|
||||
.main{
|
||||
width:100%;
|
||||
background-color: #c1d7e3;
|
||||
}
|
||||
/*
|
||||
*页头div
|
||||
*/
|
||||
.headDiv{
|
||||
height:43px;
|
||||
background-color: #1D9ED7;
|
||||
}
|
||||
/*
|
||||
*页头标题div
|
||||
*/
|
||||
.headSpanDiv{
|
||||
padding:10px 15px;
|
||||
}
|
||||
/*
|
||||
*页头标题
|
||||
*/
|
||||
.headspan{
|
||||
color: #fff;
|
||||
font-size: 1.2em;
|
||||
font-weight: bold;
|
||||
}
|
||||
.searchDiv{
|
||||
width:100%;
|
||||
height:13%;
|
||||
background-color: #FFF;
|
||||
}
|
||||
.contentDiv{
|
||||
width:100%;
|
||||
height: calc(100vh - 13% - 43px - 1vh);
|
||||
margin-top:1vh;
|
||||
background-color: #FFF;
|
||||
}
|
||||
.labelDiv{
|
||||
padding-top: 2%;
|
||||
padding-right: 0;
|
||||
text-align: right;
|
||||
}
|
||||
.rowDiv{
|
||||
padding-top:0.5%;
|
||||
}
|
||||
.inputDiv{
|
||||
padding:0!important;
|
||||
margin-left: -3%!important;
|
||||
}
|
||||
h4{
|
||||
color: #fff;
|
||||
font-size: 1.0em;
|
||||
font-weight: bold;
|
||||
}
|
||||
hr{
|
||||
margin:0!important;
|
||||
}
|
||||
#iframe{
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body style="scroll:auto" onkeydown="disabledPrint()">
|
||||
<!--主键-->
|
||||
<input type="hidden" id="patientId" value="${patientId}">
|
||||
<!--记账号-->
|
||||
<input type="hidden" id="accountNumber" value="${accountNumber}">
|
||||
<input type="hidden" id="assortIds" value="${assortIds}">
|
||||
<input type="hidden" id="visitId" value="${visitId}">
|
||||
<!--业务识别码1:护理按需采集预览-->
|
||||
<input type="hidden" id="typeFlag" value="1">
|
||||
<div class="main">
|
||||
<div class="headDiv">
|
||||
<div class="headSpanDiv">
|
||||
<span class="headspan">
|
||||
病案浏览
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<!--病案详情-->
|
||||
<div class="searchDiv">
|
||||
<input type="hidden" id="admissId" value="${commom.admissId}">
|
||||
<div class="row rowDiv">
|
||||
<div class="col-sm-3 inputDiv">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-5 control-label labelDiv">主管医生:</label>
|
||||
<div class="col-sm-7">
|
||||
<input type="text" readonly class="form-control input input-sm input" id="doctorInCharge">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-3 inputDiv">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-5 control-label labelDiv">姓名:</label>
|
||||
<div class="col-sm-7">
|
||||
<input type="text" readonly class="form-control input-sm input" id="name">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-3 inputDiv">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-5 control-label labelDiv">住院号:</label>
|
||||
<div class="col-sm-7">
|
||||
<input type="text" readonly class="form-control input-sm input" id="inpatientNo">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-3 inputDiv">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-5 control-label labelDiv">住院次数:</label>
|
||||
<div class="col-sm-7">
|
||||
<input type="text" readonly class="form-control input-sm input" id="admissTimes">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row rowDiv">
|
||||
<div class="col-sm-3 inputDiv">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-5 control-label labelDiv">出院科室:</label>
|
||||
<div class="col-sm-7">
|
||||
<input type="text" readonly class="form-control input-sm input" id="disDeptName">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-3 inputDiv">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-5 control-label labelDiv">出院日期:</label>
|
||||
<div class="col-sm-7">
|
||||
<input type="text" readonly class="form-control input-sm input" id="disDate">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="contentDiv">
|
||||
<iframe width="100%" src="" id="iframe" frameborder="0" scrolling="no"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript" src="${path}/static/js/showRecord/showRecord.js"></script>
|
||||
<script type="text/javascript" src="${path}/static/js/showRecord/showRecordIframeCommom.js"></script>
|
||||
</body>
|
||||
</html>
|
@ -1,198 +0,0 @@
|
||||
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8" contentType="text/html;charset=UTF-8" %>
|
||||
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<c:set value="${pageContext.request.contextPath}" var="path" scope="page"/>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta http-equiv="X-UA-Compatible" IE="EmulateIE7">
|
||||
<title>首页</title>
|
||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||
<%@ include file="/WEB-INF/jspf/common.jspf" %>
|
||||
<script type="text/javascript" src="${path}/static/js/menu.js"></script>
|
||||
</head>
|
||||
<script type="text/javascript">
|
||||
$(function () {
|
||||
function ajaxJsonFun() {
|
||||
var menuList =${menuList};
|
||||
//拥有的功能
|
||||
var str = "";
|
||||
//所属科室
|
||||
var depts = "";
|
||||
if (menuList != null && menuList != "")
|
||||
if (menuList.code == 100) {
|
||||
var list = menuList.extend.list;
|
||||
if (list != null) {
|
||||
var sysUL;
|
||||
for (var i = 0; i < list.length; i++) {
|
||||
if (list[0].deptId == list[i].deptId) {
|
||||
if (list[i].methodParent != 0 && (list[i].menuUrl == "#" || list[i].menuUrl == "" || list[i].menuUrl == null)) {
|
||||
var mulLi = newLiFun();
|
||||
var mulA = newAFun(list[i].menuName, list[i].menuIcon);
|
||||
mulLi.append(mulA);
|
||||
var menuAUL = newUlFun();
|
||||
//sysUL = liFun(list[i].menuName,list[i].menuIcon);
|
||||
/*菜单*/
|
||||
for (var j = 0; j < list.length; j++) {
|
||||
if (list[i].menuId == list[j].methodParent) {
|
||||
if (list[0].deptId == list[j].deptId) {
|
||||
str = "";
|
||||
depts = "";
|
||||
/*功能值*/
|
||||
for (var x = 0; x < list.length; x++) {
|
||||
// console.log(list[x].methodType);
|
||||
if (depts.indexOf(list[x].deptCode) == -1) {
|
||||
if (depts != "") {//该步即不会第一位有逗号,也防止最后一位拼接逗号!
|
||||
depts += ",";
|
||||
}
|
||||
depts += list[x].deptCode;
|
||||
}
|
||||
//console.log(list[x].methodParent + "=====" + list[j].menuId);
|
||||
if (list[x].method != null && list[x].method != "" && list[x].methodParent == list[j].menuId) {
|
||||
//console.log(list[x].methodParent+"====="+ list[j].menuId);
|
||||
str += list[x].methodType + ",";
|
||||
}
|
||||
}
|
||||
if (depts.indexOf("undefined") != -1) {
|
||||
depts = "";
|
||||
}
|
||||
if (str.indexOf("undefined") != -1) {
|
||||
str = "";
|
||||
}
|
||||
|
||||
var menuALi = newAliFun(list[j].menuName, list[j].menuIcon, "/emr_medical_record" + list[j].menuUrl + "?num=" + str + "&depts=" + depts);
|
||||
|
||||
menuAUL.append(menuALi);
|
||||
mulLi.append(menuAUL);
|
||||
}
|
||||
}
|
||||
}
|
||||
$('#indexTreeMenu').append(mulLi);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
ajaxJsonFun();
|
||||
});
|
||||
</script>
|
||||
<body class="hold-transition skin-blue sidebar-mini">
|
||||
|
||||
<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">
|
||||
<p>嘉时</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="navbar-custom-menu">
|
||||
<ul class="nav navbar-nav">
|
||||
<li class="user user-menu">
|
||||
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
|
||||
<img src="${path}/static/bootstrap-3.3.7/dist/img/user2-160x160.jpg" class="user-image"
|
||||
alt="User Image">
|
||||
<span class="hidden-xs">${userSession}</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<div class="margin">
|
||||
<div class="btn-group">
|
||||
<button type="button" class="btn btn-default">主题</button>
|
||||
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"
|
||||
aria-expanded="false" style="height:2.8rem">
|
||||
<span class="caret"></span>
|
||||
<span class="sr-only">Toggle Dropdown</span>
|
||||
</button>
|
||||
<ul class="dropdown-menu" role="menu">
|
||||
<li><a href="#">帮助</a></li>
|
||||
<li><a href="#">联系我们</a></li>
|
||||
<li><a href="${POWER_URLHEAD}/gatewayPage">返回首页</a></li>
|
||||
<li class="divider"></li>
|
||||
<li><a href="${POWER_URLHEAD}/logout?token=${token}">退出登陆</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<aside class="main-sidebar">
|
||||
<section class="sidebar">
|
||||
<!-- 菜单列表-->
|
||||
<ul id="indexTreeMenu" class="sidebar-menu" data-widget="tree">
|
||||
<%--<li class="active treeview">--%>
|
||||
<%--<a href="#">--%>
|
||||
<%--<i class="fa fa-dashboard"></i> <span>病案归档管理</span>--%>
|
||||
<%--<span class="pull-right-container">--%>
|
||||
<%--<i class="fa fa-angle-left pull-right"></i>--%>
|
||||
<%--</span>--%>
|
||||
<%--</a>--%>
|
||||
<%--<ul class="treeview-menu">--%>
|
||||
<%--<li><a href="${path}/inHosp/inHospitals" target="iFrame1"><i class="fa fa-circle-o"></i>在院浏览</a> </li>--%>
|
||||
<%--<li><a href="${path}/beHosp/beHosps" target="iFrame1"><i class="fa fa-circle-o"></i>出院浏览</a></li>--%>
|
||||
<%--<li><a href="${path}/unfile/unfileMedicals" target="iFrame1"><i class="fa fa-circle-o"></i>未归档病历列表</a></li>--%>
|
||||
<%--<li><a href="${path}/fault/faults" target="iFrame1" ><i class="fa fa-circle-o"></i>缺陷列表</a></li>--%>
|
||||
<%--<li><a href="${path}/medicalRecall/recall" target="iFrame1"><i class="fa fa-circle-o"></i>病案召回</a></li>--%>
|
||||
<%--<li><a href="${path}/recallDate/recallDates" target="iFrame1"><i class="fa fa-circle-o"></i>病案召回日期</a></li>--%>
|
||||
<%--<li><a href="${path}/lastVerify/lastVerifys" target="iFrame1"><i class="fa fa-circle-o"></i>病案室审核(终审)</a></li>--%>
|
||||
<%--<%–<li><a href="${path}/recallDate/recalltes" target="iFrame1"><i class="fa fa-circle-o"></i>病案归档统计</a></li>–%>--%>
|
||||
<%--</ul>--%>
|
||||
<%--</li>--%>
|
||||
<%--<li class="active treeview">--%>
|
||||
<%--<a href="#">--%>
|
||||
<%--<i class="fa fa-dashboard"></i> <span>其他管理</span>--%>
|
||||
<%--<span class="pull-right-container">--%>
|
||||
<%--<i class="fa fa-angle-left pull-right"></i>--%>
|
||||
<%--</span>--%>
|
||||
<%--</a>--%>
|
||||
<%--<ul class="treeview-menu">--%>
|
||||
<%--<li><a href="${path}/faultType/faultTypes" target="iFrame1"><i class="fa fa-circle-o"></i>缺陷类别列表</a></li>--%>
|
||||
<%--<li><a href="${path}/dictionary/dictionarys" target="iFrame1"><i class="fa fa-circle-o"></i>字典列表</a></li>--%>
|
||||
<%--<%–<li><a href="${path}/paper/allPaper" target="iFrame1"><i class="fa fa-circle-o"></i>通知管理</a></li>–%>--%>
|
||||
<%--</ul>--%>
|
||||
<%--</li>--%>
|
||||
</ul>
|
||||
</section>
|
||||
</aside>
|
||||
|
||||
<div class="content-wrapper">
|
||||
<section class="content">
|
||||
<!-- 内容 src="${path}/paper/allPaper"-->
|
||||
<div class="page-content-wrapper">
|
||||
<div class="page-content">
|
||||
<div class="">
|
||||
<iframe style="height:90%;width:100%; overflow-x:hidden;overflow-y:scroll" id="iFrame1"
|
||||
name="iFrame1" frameborder="0"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</div>
|
||||
<!-- 底部版权-->
|
||||
<footer class="main-footer">
|
||||
<div class="pull-right hidden-xs">
|
||||
<b>Version</b> 1.1.1
|
||||
</div>
|
||||
<strong>Copyright © 2019-2090 hjl.</strong> All rights
|
||||
reserved.
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,29 +0,0 @@
|
||||
//初始化函数
|
||||
$(function(){
|
||||
//加载病案信息
|
||||
loadRecord();
|
||||
//加载iframe
|
||||
$("#iframe").prop("src",path+"/font/showRecordIframe?patientId="+$("#patientId").val())+"&assortIds="+assortIds;
|
||||
})
|
||||
|
||||
//加载病案信息
|
||||
function loadRecord(){
|
||||
$.ajax({
|
||||
type:'get',
|
||||
url:path+'/font/getRecord',
|
||||
data:{masterId:$("#patientId").val()},
|
||||
async:false,
|
||||
dataType:'json',
|
||||
success:function (data) {
|
||||
if(null != data && data != ''){
|
||||
$("#doctorInCharge").val(data.doctorInCharge);
|
||||
$("#inpatientNo").val(data.inpNo);
|
||||
$("#name").val(data.name);
|
||||
$("#admissTimes").val(data.visitId);
|
||||
$("#disDate").val(data.dischargeDateTime);
|
||||
$("#disDeptName").val(data.deptName);
|
||||
$("#archivestate").val(data.archivestate);
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
//屏蔽鼠标右键
|
||||
document.oncontextmenu = function(e) {
|
||||
var e = e || window.event;
|
||||
e.returnValue = false;
|
||||
return false;
|
||||
}
|
||||
//禁止快捷键打印
|
||||
function disabledPrint(){
|
||||
if(event.keyCode==80 && event.ctrlKey){
|
||||
event.keyCode=0;
|
||||
event.returnValue=false;
|
||||
}
|
||||
if (event.ctrlKey && event.keyCode == 83) {
|
||||
event.preventDefault();
|
||||
event.returnValue = false;
|
||||
return false;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue