<!doctype html>
|
<html>
|
<head>
|
<meta charset="utf-8" />
|
<title>预约信息-预约须知</title>
|
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
<!-- js引用 -->
|
<script src="../../js/config.js"></script>
|
<script src="../../js/h5toapp.js"></script>
|
<script src="../../js/h5to.js"></script>
|
|
<!-- 组件js引用 -->
|
<script src="../../js/mui.min.js"></script>
|
<!-- 组件标准css引用 -->
|
<link rel="stylesheet" href="../../css/mui.min.css">
|
<!-- css引用 -->
|
<link href="../../css/currency.css" rel="stylesheet">
|
<link href="../../css/spinkit.css" rel="stylesheet">
|
<link href="../../css/icon/iconfont.css" rel="stylesheet">
|
<!-- 界面本身css引用 -->
|
<link href="./reserveMessage4.css" rel="stylesheet">
|
|
<style type="text/css">
|
.mui-scroll-wrapper {
|
/* top: 371px; */
|
height: 260px;
|
}
|
|
.mui-scroll-wrapper {
|
position: relative;
|
}
|
</style>
|
</head>
|
|
<body class="app_page">
|
<div style="background-color: #F9FAFC; height: 100vh; width: 100%; margin: 0; overflow: auto;">
|
<div id="loading" class="example">
|
<div class="sk-plane loading_location"></div>
|
</div>
|
|
<div class="mui-content">
|
<div class="z_head" style=" box-sizing: border-box;">
|
<div style="margin: 16px 0; box-sizing: border-box;">
|
<div style="width: 92px;float: left;overflow: hidden;">
|
<img src="../../img/head.png" class="top_img_left" />
|
</div>
|
<img src="../../img/head.png" class="top_img" />
|
</div>
|
<div>
|
<div class="title_txt">预约须知</div>
|
</div>
|
</div>
|
|
<div style="min-height: 369px;">
|
<div class="z_body" style=" box-sizing: border-box;">
|
<div class="z_body_top">预约须知</div>
|
<div class="z_body_bottom">
|
初步诊断,您有较大概率咨询
|
<span style="color: #21D197;">腰间盘突出</span>
|
或其他相似疾病,已为您推荐以下
|
<span style="color: #21D197;">脊柱外科</span>
|
医生
|
</div>
|
<div class="error_txt" style="display: block;">
|
<div style="margin-top: 24px;">检测到您选择的科室与智能导诊的结果不一致:</div>
|
<div style="margin-top: 24px;"> 您选择的科室: <span class="green_txt">胸外科</span></div>
|
<div style="margin-top: 24px;">智能导诊结果: <span class="green_txt">脊柱内科</span></div>
|
</div>
|
|
</div>
|
</div>
|
|
<div class="z_foot">
|
<div class="z_foot_back" onclick="click_row(menurows[0])">
|
<span>上一步</span>
|
</div>
|
<div class="z_foot_next" onclick="click_row(menurows[1])">
|
<span>下一步</span>
|
</div>
|
</div>
|
|
</div>
|
|
|
<script type="text/javascript">
|
mui.init({
|
swipeBack: true //启用右滑关闭功能
|
});
|
//1. data
|
var hz_name = "张翠山";
|
var hz_sex = "男";
|
var hz_age = "50岁";
|
var headPortrait = "../../img/head1.jpg";
|
var name = "陈维";
|
var academictitle = "主任医师";
|
var hospital = "上海第十人民医院";
|
var department = "心内科";
|
var leveltitle = "权威专家";
|
|
var menurows = [{
|
id: "1",
|
name: "症状描述",
|
path: "./reserveMessage3",
|
_id: 1046
|
},
|
{
|
id: "2",
|
name: "症状描述",
|
path: "./ddqr",
|
_id: 1008
|
},
|
];
|
|
mui('.mui-scroll-wrapper').scroll({
|
deceleration: 0.0005 //flick 减速系数,系数越大,滚动速度越慢,滚动距离越小,默认值0.0006
|
});
|
|
setRouteParams({userId: "1352141846545367042",params: {"doctorId": "1285860235186212865"}});
|
//2.function
|
function initPage() {
|
|
|
}
|
|
function click_row(row) {
|
var pam = {
|
_id: row._id,
|
params: {
|
userId: login_data.id
|
}
|
};
|
|
app_click("route", pam, callback);
|
}
|
|
function loadData() {
|
doLoadData();
|
hideloading("loading");
|
}
|
|
function doLoadData() {
|
|
}
|
//3. run
|
mui.ready(function() {
|
onInitReady(function() {
|
// setRightBtn("rightBtn", {_id: 3000}, callback);
|
initPage();
|
loadData();
|
});
|
})
|
</script>
|
</body>
|
</html>
|