<!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">
|
<link rel="stylesheet" href="../../css/mui.picker.min.css">
|
<link rel="stylesheet" href="../../css/mui.poppicker.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="./jjsq.css" rel="stylesheet">
|
|
<style type="text/css">
|
textarea::-webkit-input-placeholder {
|
color: #9393AC;
|
-webkit-text-fill-color: #9393AC;
|
}
|
textarea {
|
color: #363F4D;
|
-webkit-text-fill-color: #363F4D;
|
}
|
</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 style="margin: 16px; box-sizing: border-box;">
|
<div class="mui-card">
|
<div class="z_menu_btn_row " style="height: 151px;line-height: 0px;" >
|
<textarea class="textarea_txt" placeholder="文字描述"></textarea>
|
</div>
|
<div class="z_menu_btn_row " style="height: 60px;line-height: 60px;" >
|
<span class="span_txt">屏蔽该医生的后续申请</span>
|
<div class="mui-switch mui-switch mui-switch-mini">
|
<div class="mui-switch-handle"></div>
|
</div>
|
</div>
|
</div>
|
</div>
|
<div style="width: 100%;">
|
<button class="confirm_button" onclick="click_row(menurows[0])" style="margin:300px 24px 31px;height: 44px;width: -webkit-fill-available;">提交</button>
|
</div>
|
</div>
|
</div>
|
|
<script type="text/javascript">
|
mui.init({
|
swipeBack: true //启用右滑关闭功能
|
});
|
//1. data
|
var personInfo = {
|
|
};
|
|
var menurows = [
|
{id: "1", name: "返回", path: "./",_id: 2003},
|
];
|
|
setRouteParams({userId: "1285860235186212865",params: {"doctorId": "1285860235186212865","isFriend":true}});
|
|
function initPage() {
|
|
hideloading("loading");
|
}
|
|
function loadData() {
|
ajaxGet('doctor/api/query/' + login_data.params.doctorId, function(result) {
|
if (result) {
|
console.info(result);
|
personInfo = result.data
|
}
|
doLoadData();
|
hideloading("loading");
|
});
|
}
|
|
function click_row(row) {
|
var pam = {
|
_id:row._id,
|
params:{
|
userId: login_data.userId
|
}
|
};
|
window.webBridge.callAppRouter("route", pam, function(err, resultObj) {
|
err(err, resultObj);
|
});
|
}
|
|
function doLoadData(){
|
document.getElementById('doctorAvatar').src = personInfo.doctorAvatar;
|
}
|
|
//run
|
mui.ready(function() {
|
onInitReady(function() {
|
initPage();
|
loadData();
|
});
|
});
|
</script>
|
</body>
|
|
</html>
|