hefeixia
2021-02-18 5b8c95c760840f09910730943b21391e47187315
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!doctype html>
<html style="background-color: #F9FAFC">
    <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="./shttsq.css" rel="stylesheet">
        
        <style type="text/css">
            
        </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" style="background-color: #F9FAFC">
                    <div class="mui-card"style="margin: 24px 16px 16px 16px; box-sizing: border-box;">
                        <div class="z_head">
                            <!-- 医生基本信息 -->
                            <div class="z_img_head1">
                                <img id="doctorAvatar"/>
                            </div>
                            <div class="z_info">
                                <div class="z_info_name" >
                                    <span id="doctorName" class="z_info_name_text" ></span>
                                </div>
                                <div class="z_info_detail" >
                                    <span id="doctorProfessional" class="z_info_detail_text"></span>
                                </div>
                                <div class="z_info_detail" >
                                    <span id="medoHospitalName" class="z_info_detail_text"></span>
                                    <span id="mediDiseaseClassifyName01" class="z_info_detail_text"></span>
                                </div>
                            </div>
                        </div>
                        <div class="z_sqxx">
                            <!-- 验证信息 -->
                            <div style="margin:16px 0px 0px 0px;line-height: 16px;">
                                <span class="sqxx">申请详情:</span>
                                <span id="sqxx" class="sqxx"></span>
                            </div>
                            <div style="margin:16px 0px 10px 0px;height: 16px;line-height: 16px;">
                                <span id="sqly" class="sqly"></span>
                            </div>
                        </div>
                        <div class="z_ckzy " onclick="click_row(menurows[0])">
                                <!-- 查看主页 -->
                            <div class="z_ckzy_text">
                                <span class="ckzy">查看主页</span>
                            </div>
                            <div class="z_ckzy_icon">
                                <img id="arrowRight"/>
                            </div>
                        </div>
                    </div>
            </div>
        </div>
        
        <script type="text/javascript">
            mui.init({
                swipeBack: true //启用右滑关闭功能
            });
            //1. data
            var arrowRight = "../../img/ic_arrow_right.png";
            var sqly="近期科室事务繁忙,无暇顾及团队各项事宜,故申请退出医生团队。";
            var sqxx="没有时间";
            var doctor = {}
            var menurows = [
                {id: "0", name: "查看主页", path: "./yshomefhy",_id: 1015},
                {id: "1", name: "拒绝", path: ""},
                {id: "2", name: "通过", path: ""},
            ];
            
            setRouteParams({userId: "1285860235186212865",params: {"doctorId": "1285860235186212865"}});
            
            function initPage() {
                document.getElementById('doctorAvatar').src = doctorAvatar;
                document.getElementById('arrowRight').src = arrowRight;
                document.getElementById('doctorName').innerText = doctorName;
                document.getElementById('sqly').innerText = sqly;
                document.getElementById('sqxx').innerText = sqxx;
                document.getElementById('doctorProfessional').innerText = doctorProfessional;
                document.getElementById('medoHospitalName').innerText = medoHospitalName;
                document.getElementById('mediDiseaseClassifyName01').innerText = mediDiseaseClassifyName01;
            }
            
            function loadData() {
                ajaxGet('doctor/api/query/' + login_data.params.doctorId, function(result) {
                    if (result) {
                        console.info(result);
                        doctor = result.data
                    }
                    doLoadData();
                    hideloading("loading");
                });
            }
            
            function click_row(row) {
                var pam = {
                    _id: row._id,
                    params:{
                        userId: login_data.userId
                    }
                };
                app_click("route", pam, callback);
            }
            
            //展示数据
            function doLoadData(){
                document.getElementById('doctorAvatar').src = doctor.doctorAvatar;
                document.getElementById('doctorName').innerText = doctor.doctorName;
                document.getElementById('doctorProfessional').innerText = doctor.doctorProfessional;
                document.getElementById('medoHospitalName').innerText = doctor.medoHospitalName;
                document.getElementById('mediDiseaseClassifyName01').innerText = doctor.mediDiseaseClassifyName01;
            }
            
            //run
            mui.ready(function() {
                onInitReady(function() {
                    initPage();
                    loadData();
                });
            });
        </script>
    </body>
</html>