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
50
51
52
53
54
55
56
57
58
<!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="pzupdate"><span><em>配置关系图</em></span></a>
                <a class="relaequip"><span><em>DSL</em></span></a>
            </div>
        </div>
    
        <div class="deal_switch_wrap">
            <!-- 基本信息 -->
            <div class="deal_switch_con iframecon" style="display:block;">
                <iframe src="${base}/business/pages/change/viewCiInfo.html?tempId=${tempId}&flowId=${flowId}" frameborder="0" scrolling="no" width="100%" height="800px" id="baseMsgIframe"></iframe>
            </div>
            <!-- 配置关系 -->
            <div class="deal_switch_con iframecon" style="display:none;">
                <iframe src="${base}/business/pages/change/viewRelationInfo.html?ciId=${ciId}&flowId=${flowId}" width="100%" height="600px" id="relationIframe"></iframe>
            </div>
            <!-- 配置关系图 -->
            <div class="deal_switch_con iframecon" style="display:none;">
            </div>
            <!-- dsl配置 -->
            <div class="deal_switch_con iframecon" style="display:none;">
                <iframe src="${base}/business/pages/change/viewCiDslList.html?configId=${ciId}&proId=${proId}&flowId=${flowId}" width="100%" height="600px" id="configDslIframe"></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();
    })
    
    function onDialogBtnClick(btnID, dialogID, config){
        if(btnID == "btnSure"){
            window.top.document.getElementById("dialogIframeConfigEditIndex").contentWindow.document.getElementById("baseMsgIframe").contentWindow.document.getElementById("myform").submit();
        }
    }
</script>
</body>
</html>