Helius
2021-06-16 5728be2af515b2200e782aa201ca5d4d67d9ea47
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
<!DOCTYPE html>
<html>
<head>
    <meta content="text/html;charset=UTF-8"/>
    <title>${title!"业务页面"}</title>
    <meta name="keywords" content="fsLayuiPlugin,layui,layuiPlugin,layui插件,layui快速开发插件" />
    <meta name="description" content="fsLayuiPlugin,layui,layuiPlugin,layui插件,layui快速开发插件" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
    <meta http-equiv ="Pragma" content = "no-cache"/>
    <meta http-equiv="Cache-Control" content="no cache" />
    <meta http-equiv="Expires" content="0" />
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
    <meta name="apple-mobile-web-app-status-bar-style" content="black">
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="format-detection" content="telephone=no"/>    
    <script src="${ctxPath}/js/cdn/pace.min.js?v=${jsVer}"></script>
    <link href="${ctxPath}/css/cdn/pace-theme-flash.css?v=${jsVer}" rel="stylesheet">
    <link rel="stylesheet" type="text/css" href="${ctxPath}/plugins/layui/css/layui.css?v=${jsVer}" media="all"/>
    <link rel="stylesheet" type="text/css" href="${ctxPath}/css/cdn/font_520106_q8xykrwf86ywrk9.css?v=${jsVer}" media="all"/>
    <script type="text/javascript" src="${ctxPath}/plugins/layui/layui.js?v=${jsVer}"></script>
    <script type="text/javascript" src="${ctxPath}/plugins/jquery/jquery.min.js?v=${jsVer}"></script>
    <!--<link rel="stylesheet" href="${ctxPath}/plugins/ztree/css/zTreeStyle.css?v=${jsVer}" type="text/css">-->
    <link rel="stylesheet" href="${ctxPath}/plugins/ztree/css/metroStyle.css?v=${jsVer}" type="text/css">
    <script type="text/javascript" src="${ctxPath}/plugins/ztree/js/jquery.ztree.all.min.js?v=${jsVer}"></script>
    <!-- 业务公用库 -->
    <script type="text/javascript" src="${ctxPath}/js/common.js?v=${jsVer}"></script>
    <script type="text/javascript" src="${ctxPath}/js/lib.js?v=${jsVer}"></script>
    <script type="text/javascript" src="${ctxPath}/js/other.js/?v=${jsVer}"></script>
    <script type="text/javascript" src="${ctxPath}/js/base64.js/?v=${jsVer}"></script>
    <script>
 
    Common.ctxPath= '${ctxPath}';
    Common.version= '${jsVer}';
    //设定layui模块的版本,1234
    layui.config({
        base : Common.ctxPath+"${jsBase!}",
        version : Common.version
    });
    $(document).ready(function () { }).keydown(
   function (e) {
    if (e.which === 27) {
        Common.openConfirm("是否放弃治疗回到主页?",function(){
            layer.closeAll(); 
        })
      
       }
    });
    </script>
    <style>
    .site-block{padding: 20px; border: 1px solid #eee;}
    
    
    .input-readonly{
        background-color: #efefef;  
        cursor:not-allowed;
    }  
    .button-disabled{
        background-color: #efefef;  
        cursor:not-allowed;
    }
    .layui-table-cell {
        height: 163px;
        line-height: 20px;
    }
 
    </style>
</head>
<body>
<div class="layui-layout layui-layout-admin">
<div style="margin: 15px;"> 
${layoutContent}
</div>
</div>
</body>
</html>