|
@ -0,0 +1,80 @@
|
|
|
<%--
|
|
|
Created by IntelliJ IDEA.
|
|
|
User: Administrator
|
|
|
Date: 2018/5/29 0029
|
|
|
Time: 下午 2:01
|
|
|
To change this template use File | Settings | File Templates.
|
|
|
--%>
|
|
|
<%@ page contentType="text/html; charset=UTF-8" language="java" pageEncoding="UTF-8" %>
|
|
|
<html>
|
|
|
<head>
|
|
|
<%@ include file="../head/page_head.jsp"%>
|
|
|
<title>预约记录</title>
|
|
|
<style type="text/css">
|
|
|
.m-form-group label.label_title{width: 100px}
|
|
|
ul#nav{ width:100%; height:30px; background:#00A2CA;margin:0 auto}
|
|
|
ul#nav li{display:inline; height:30px}
|
|
|
ul#nav li a{display:inline-block; padding:5px 10px; height:30px;
|
|
|
color:#FFF; font-family:"\5FAE\8F6F\96C5\9ED1"; font-size:16px}
|
|
|
ul#nav li a:hover{background:#0095BB;}/*设置鼠标滑过或悬停时变化的背景颜色*/
|
|
|
</style>
|
|
|
</head>
|
|
|
<body>
|
|
|
<ul id="nav">
|
|
|
<li><a href="#" onclick="opens(1)">基本信息</a></li>
|
|
|
<li><a href="#" onclick="opens(2)">预约记录</a></li>
|
|
|
</ul>
|
|
|
<div id="div_reservation_info_form" data-role-form class="m-form-inline f-mt20 f-ml30" data-role-form style="overflow-y: scroll;height: 450px">
|
|
|
<input type="hidden" id="patient" value='${patient}' data-attr-scan="id"/>
|
|
|
|
|
|
<%-- ##################################基本信息div 开始###############################--%>
|
|
|
<div id="div_base_info">
|
|
|
<div class="m-form-group" style="">
|
|
|
<label class="label_title" style="width:120px">居民标识符</label>
|
|
|
<div class="l-text-wrapper m-form-control">
|
|
|
<input type="text" id="inp_patient" class="f-w240" data-attr-scan="patient"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="m-form-group" style="">
|
|
|
<label class="label_title" style="width:120px">居民姓名</label>
|
|
|
<div class="l-text-wrapper m-form-control">
|
|
|
<input type="text" id="inp_name" class="f-w240" data-attr-scan="name"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="m-form-group" style="">
|
|
|
<label class="label_title" style="width:120px">身份证号</label>
|
|
|
<div class="l-text-wrapper m-form-control">
|
|
|
<input type="text" id="inp_idcard" class="f-w240" data-attr-scan="idcard"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="m-form-group" style="">
|
|
|
<label class="label_title" style="width:120px">社保卡号</label>
|
|
|
<div class="l-text-wrapper m-form-control">
|
|
|
<input type="text" id="inp_ssc" class="f-w240" data-attr-scan="ssc"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="m-form-group" style="">
|
|
|
<label class="label_title" style="width:120px">手机号</label>
|
|
|
<div class="l-text-wrapper m-form-control">
|
|
|
<input type="text" id="inp_mobile" class="f-w240" data-attr-scan="mobile"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<%-- ##################################基本信息div 结束###############################--%>
|
|
|
</div>
|
|
|
</body>
|
|
|
<script>
|
|
|
function opens(obj){
|
|
|
if(obj == 1){
|
|
|
document.getElementById("div_base_info").style.display="block";
|
|
|
document.getElementById("div_reservation_info").style.display="none";
|
|
|
}
|
|
|
if(obj == 2){
|
|
|
document.getElementById("div_base_info").style.display="none";
|
|
|
document.getElementById("div_reservation_info").style.display="block";
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
<%@ include file="../head/page_foot.jsp"%>
|
|
|
<%@ include file="sign_reservation_modify_js.jsp" %>
|
|
|
</html>
|