wuzhenkun
2021-02-18 95033a06a92d00cbf9c103c8512e1b1c7a7646e5
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
<!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="./sflb.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 id="sflb"></div>
                </div>
            </div>
        </div>
        
        <script type="text/javascript">
            mui.init({
                swipeBack: true //启用右滑关闭功能
            });    
            
            var followScale = {};
            var menurows = [
                {id: "1", name: "设置头像", path: "./sztx"},
                {id: "2", name: "称号说明", path: "./chsm"},
            ];
            setRouteParams({userId: "1285860235186212865",params: {"doctorId": "1285860235186212865"}});
            
            function loadData() {
                ajaxPost('client/api/followScale/queryFollowScaleByDoctorId', {doctorId: login_data.userId,page: 1,limit: 5}, function(result) {
                    if (result) {
                        followScale = result.data;
                    }
                    doLoadData();
                    hideloading("loading");
                });
            }
            
            function initPage() {
 
            }
            
            function click_row(idStr) {
                var pam = { 
                    _id: 1020,
                    params:{
                        userId: login_data.userId,
                        id: row.id
                     }
                   };
                app_click("route", pam, callback);
            }
            
            //展示数据
            function doLoadData(){
                var followScaleList = followScale.records;
                var followScaleContent = "";
                for (var i = 0; i < followScaleList.length; i++) {
                    followScaleContent1 =
                        '<div class="mui-card" style="margin-top: 16px;">'+
                            '<div class="z_menu_btn_row" style="height: 104px; line-height: 104px;" >'+
                                '<div class="z_menu_btn_img" style="height: 100%;">'+
                                    '<img src="../../img/编组%202(2).png" style="margin: 16px 24px 16px 0;" />'+
                                '</div>'+
                                '<div class="z_menu_btn_txt" style="">'+
                                    '<div class="z_menu_btn_txt_div1">'+followScaleList[i].followScaleName+'</div>'+
                                    '<div class="z_menu_btn_txt_div2">'+
                                        '<span>创建时间:</span>'+
                                        '<span">'+followScaleList[i].createTime.split(" ")[0]+'</span>'+
                                    '</div>'+
                                    '<div class="z_menu_btn_txt_div3">'+
                                        '<span>引用次数:</span>'+
                                        '<span>'+111+'</span>'+
                                    '</div>'+
                                '</div>'+
                                '<div class="z_menu_btn_icon" style="border-left: 1px solid #FAFAFA;padding-left: 26px;">'+
                                    '<span class="z_menu_btn_icon_txt" onclick="click_row('+"'" + followScaleList[i].id + "'"+')">查看</span>'+
                                '</div>'+
                            '</div>'+    
                        '</div>';
                    followScaleContent += followScaleContent1
                }
                sflb.innerHTML = followScaleContent;
            }
            
            //run
            mui.ready(function() {
                onInitReady(function() {
                    initPage();
                    loadData();
                });
            });
        </script>
    </body>
</html>