|
@ -0,0 +1,65 @@
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta name="renderer" content="webkit">
|
|
|
|
<meta http-equiv="Cache-Control" content="no-siteapp" />
|
|
|
|
<title>预约挂号和预约记录</title>
|
|
|
|
<meta name="keywords" content="">
|
|
|
|
<meta name="description" content="">
|
|
|
|
<link rel="shortcut icon" href="favicon.ico">
|
|
|
|
<link href="../../../css/bootstrap.min.css?v=3.3.6" rel="stylesheet">
|
|
|
|
<style>
|
|
|
|
.nav-tabs{
|
|
|
|
margin-top: 10px;
|
|
|
|
padding: 0 10px;
|
|
|
|
border-bottom: 1px solid #12b7f5
|
|
|
|
}
|
|
|
|
.nav-tabs>li{
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
.nav-tabs>li>a{
|
|
|
|
border: 1px solid #12b7f5;
|
|
|
|
background-color: #fff;
|
|
|
|
color: #12b7f5;
|
|
|
|
}
|
|
|
|
.nav-tabs>li.active>a,
|
|
|
|
.nav-tabs>li.active>a:focus,
|
|
|
|
.nav-tabs>li.active>a:hover{
|
|
|
|
color: #fff;
|
|
|
|
background-color: #12b7f5;
|
|
|
|
border-color: #12b7f5;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<ul class="nav nav-tabs" id="tabs">
|
|
|
|
<li class="active" role="presentation">
|
|
|
|
<a href="doctor-detail.html" target="view_frame" data-index="1">预约挂号</a>
|
|
|
|
</li>
|
|
|
|
<li class="info-confirm.html" role="presentation">
|
|
|
|
<a href="info-confirm.html" target="view_frame" data-index="2">预约记录</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<script src="../../../js/jquery/2.1.3/jquery.js"></script>
|
|
|
|
<script type="text/javascript" src="../../../js/weixin_common.js" ></script>
|
|
|
|
<script type="text/javascript" src="../../../js/common_http.js" ></script>
|
|
|
|
<script type="text/javascript" src="../../../js/app.js" ></script>
|
|
|
|
<script>
|
|
|
|
var yuYueGuaHaoUrl,yuYueJiLu;
|
|
|
|
var userAgent = window.localStorage.getItem(agentName);
|
|
|
|
if(userAgent){
|
|
|
|
var jsonstr = $.parseJSON(userAgent);
|
|
|
|
yuYueGuaHaoUrl = registrationServer+"/apiweb/tp.html?point=department&hospitalId="+hospitalId+"&thirdPartyUserId=" + jsonstr.uid + "&appId="+appId+"&sourceType=1";
|
|
|
|
yuYueJiLu = registrationServer+"/apiweb/tp.html?point=ghjl&thirdPartyUserId=" + jsonstr.uid + "&appId="+appId+"&sourceType=1";
|
|
|
|
}
|
|
|
|
// $(".nav-tabs li").eq(0).find("a").attr("href",yuYueGuaHaoUrl);
|
|
|
|
// $(".nav-tabs li").eq(1).find("a").attr("href",yuYueJiLu);
|
|
|
|
$(".nav-tabs").on("click","li",function(){
|
|
|
|
$(".nav-tabs li").removeClass("active");
|
|
|
|
$(this).addClass("active");
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|