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
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
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>运维年报</title> [#include "/business/pages/include/static.html" /]
<style>
.retrievebtn {
    margin-left: 20px;
    margin-bottom: 10px;
    width: 10%;
    text-align: center;
}
.monitor_flow .common_list_table td{
    width: auto;
}
#basicInfo td{
    width: auto;
}
.newtit{
    text-align:center;
    font-family: "微软雅黑";
    padding-top: 40px;
    }
.newtit h2{
    font-size:20px;
    margin:0 0 6px 0;
    font-weight:normal;
    padding:0;
}
.newtit h3{
    font-size:14px;
    color:#999;
    padding:0;
    margin:0;
    font-weight:normal;
}
</style>
<script type="text/javascript">
$(function(){
    $(".retrievebtn").live("click",function(){
        $(".retrievebtn").attr("class","retrievebtn monitor_netdevbtn");
        $(this).attr("class","retrievebtn focus");
    });
    
    $("#iframeContainer").load(function(){
        var iframeHeight = $("#iframeContainer").contents().find("body").height();
        $(this).height(iframeHeight+30);
    });
});
</script>
</head>
 
<body class="fullscreen">
[#include "/business/pages/include/header.html" /]
[#include "/business/pages/workReport/yearReportHeader.html" /]
<div class="fs_navpath">
      <h3>当前位置</h3>
      <span></span> 
      <a class="blue_txt">工作报告
    </a>
    <span></span>
    <em>运维年报</em>
</div>
<div class="newtit" style="height:60px;">
    <h2>${cusName}${RequestParameters.selDate}年运维年报</h2>
</div>
 
<div class="monitoring">
      <table class="monitor_flow">
        <tr>
            <td>
                <a href="${base}/business/pages/workReport/yearSurveyReport.html?cusId=${RequestParameters.cusId}&selDate=${RequestParameters.selDate}" target="iframeContainer"  class="retrievebtn focus" ><span>总览</span></a>
                <a href="${base}/business/pages/workReport/yearIncidentReport.html?cusId=${RequestParameters.cusId}&selDate=${RequestParameters.selDate}" target="iframeContainer"  class="retrievebtn monitor_netdevbtn" ><span>事件</span></a>
                <a href="${base}/business/pages/workReport/yearQuestionReport.html?cusId=${RequestParameters.cusId}&selDate=${RequestParameters.selDate}" target="iframeContainer"  class="retrievebtn monitor_netdevbtn" ><span>问题</span></a>
                <a href="${base}/business/pages/workReport/yearIncidentLocalReport.html?cusId=${RequestParameters.cusId}&selDate=${RequestParameters.selDate}" target="iframeContainer"  class="retrievebtn monitor_netdevbtn" ><span>驻场</span></a>
                <a href="${base}/business/pages/workReport/yearSatisReport.html?cusId=${RequestParameters.cusId}&selDate=${RequestParameters.selDate}" target="iframeContainer"  class="retrievebtn monitor_netdevbtn" ><span>满意度</span></a>
                <a href="${base}/business/pages/workReport/workSummary.html?cusId=${RequestParameters.cusId}&selDate=${RequestParameters.selDate}&type=year" target="iframeContainer"  class="retrievebtn monitor_netdevbtn" ><span>本年总结</span></a>
            </td>
        </tr>
    </table>
</div>
 
<!-- 详细信息 -->
<div class="deal_switch_wrap" style="margin-top: 2px">
    <div class="deal_switch_con iframecon" style="padding:0px 15px 0px;margin-top: 0px;">
        <iframe id="iframeContainer" name="iframeContainer" src="${base}/business/pages/workReport/yearSurveyReport.html?cusId=${RequestParameters.cusId}&selDate=${RequestParameters.selDate}" frameborder="0" scrolling="no" width="100%" height="800px;"></iframe>
    </div>
</div>
[#include "/business/pages/include/footer.html" /]
 
</body>
</html>