cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
[#include "/business/pages/include/static.html" /]
<title>指定维护方案</title>
</head>
 
<body>
<div class=" clearfix">
    <div class="nopadding" id="fsmCenter">
        <div class="deal_switch">
            <div class="dls_btn" id="dlsBtn">
                <a class="basicinfo focus"><span><em>驻场巡检</em></span></a>
                <a class="dealrem"><span><em>例行维护</em></span></a>
                <a class="relaequip"><span><em>健康检查</em></span></a>
            </div>
        </div>
    
        <div class="deal_switch_wrap">
            <!-- 驻场巡检 -->
            <div class="deal_switch_con iframecon" style="display:block;">
                <iframe id="patrol" src="${base}/business/pages/ciadd/patrolCustomization.html?ciId=${ciId}&thirdLevelId=${thirdLevelId}&readOnly=${readOnly}&projectId=${RequestParameters.projectId}" frameborder="0" scrolling="no" width="100%" height="600px"></iframe>
            </div>
            <!-- 例行维护 -->
            <div class="deal_switch_con iframecon" style="display:none;">
                   <iframe id="duty" src="${base}/business/pages/patrol/getCiRemindItem.html?ciId=${ciId}&thirdLevelId=${thirdLevelId}&readOnly=${readOnly}&projectId=${RequestParameters.projectId}" frameborder="0" scrolling="no" width="100%" height="600px"></iframe>
            </div>
            <!-- 健康检查 -->
            <div class="deal_switch_con iframecon" style="display:none;">
                   <iframe id="health" src="${base}/business/pages/patrol/getCiHealthItem.html?ciId=${ciId}&thirdLevelId=${thirdLevelId}&readOnly=${readOnly}&projectId=${RequestParameters.projectId}" frameborder="0" scrolling="no" width="100%" height="600px"></iframe>
            </div>
        </div>
    </div>
</div>
<script type="text/javascript">
    $("#dlsBtn>a").click(function() {
        var index = $("#dlsBtn>a").index(this);
        $("#dlsBtn>a").removeClass("focus");
        $(this).addClass("focus");
        
        var $dom = $("div.deal_switch_con:eq("+index+")");
        $("div.deal_switch_con").hide();
        $dom.show();
    })
    
</script>
</body>
</html>