<!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/icon/iconfont.css" rel="stylesheet">
|
<link href="../../css/spinkit.css" rel="stylesheet">
|
<!-- 界面本身css引用 -->
|
<link href="./chsm.css" rel="stylesheet">
|
|
<style type="text/css">
|
|
</style>
|
</head>
|
|
<body>
|
<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 style="margin: 16px; box-sizing: border-box;">
|
<div class="mui-card">
|
<div class="z_menu_btn_row" style="height: 169px; line-height: 169px;padding: 0;" >
|
<div class="z_menu_video">
|
<video id="video_play" width="100%" height="185" controls="controls" onclick="playPause()">
|
<source src="../../img/cf18a1812550e92afe47289eedf6c036.mp4" type="video/mp4"></source>
|
<source src="myvideo.ogv" type="video/ogg"></source>
|
<source src="myvideo.webm" type="video/webm"></source>
|
</video>
|
</div>
|
</div>
|
</div>
|
</div>
|
|
<div style="margin: 16px; box-sizing: border-box;">
|
<div class="mui-card">
|
<div class="z_menu_btn_row" style="height: 149px; line-height: 149px;" >
|
|
<div class="" style="margin-top: 16px;">
|
<div id="" class="z_menu_btn_txt_bt">优质医生</div>
|
</div>
|
<div class="" style="margin-top: 16px;">
|
<div class="z_menu_btn_txt_bt_bottom">房颤消融术,CRT/ICD/起搏器植入,室上速/室早/室速射频消融治疗。</div>
|
</div>
|
</div>
|
</div>
|
</div>
|
|
<div style="margin: 16px; box-sizing: border-box;">
|
<div class="mui-card">
|
<div class="z_menu_btn_row" style="height: 149px; line-height: 149px;" >
|
<div class="" style="margin-top: 16px;">
|
<div id="" class="z_menu_btn_txt_bt">权威专家</div>
|
</div>
|
<div class="" style="margin-top: 16px;">
|
<div class="z_menu_btn_txt_bt_bottom">房颤消融术,CRT/ICD/起搏器植入,室上速/室早/室速射频消融治疗。</div>
|
</div>
|
</div>
|
</div>
|
</div>
|
<div style="width: 100%;">
|
<button class="save_btn">保存</button>
|
</div>
|
</div>
|
</div>
|
|
|
<script type="text/javascript">
|
mui.init({
|
swipeBack: true //启用右滑关闭功能
|
});
|
|
var personInfo = [];
|
|
setRouteParams({userId: "1285860235186212865",params: {"doctorId": "1285860235186212865"}});
|
|
function initPage() {
|
|
}
|
|
function loadData() {
|
ajaxGet('doctor/api/query/' + login_data.params.doctorId, function(result) {
|
if (result) {
|
personInfo = result.data
|
}
|
doLoadData();
|
hideloading("loading");
|
});
|
}
|
|
function click_row(row) {
|
var pam = {
|
_id:row._id,
|
nav:{//头信息
|
title: row.name//文字
|
},
|
params:{
|
userId: login_data.userId
|
}//参数
|
};
|
window.webBridge.callAppRouter("aaa", pam, function(err, resultObj) {
|
err(err, resultObj);
|
});
|
}
|
//展示数据
|
function doLoadData(){
|
|
}
|
|
//run
|
mui.ready(function() {
|
onInitReady(function() {
|
initPage();
|
loadData();
|
});
|
});
|
</script>
|
</body>
|
|
</html>
|
|