AssociateDetails.jsp 6.41 KB
Newer Older
莫林毅's avatar
莫林毅 committed
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
<%--
  Created by IntelliJ IDEA.
  User: Administrator
  Date: 2017/12/9 0009
  Time: 下午 3:29
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<%@ taglib prefix="shiro" uri="http://shiro.apache.org/tags" %>
<c:set var="ctx" value="${pageContext.request.contextPath}"/>
<html>
<head>
    <title>全网监控智能分析平台</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">

    <script src="${ctx}/static/artDialog4.1.7/artDialog.source.js?skin=default"></script>
    <script src="${ctx}/static/artDialog4.1.7/plugins/iframeTools.source.js"></script>
    <script type="text/javascript" src="${ctx}/static/js/associatediagosisdetail.js"></script>
</head>
<body>
<div>
    <div class="container">
        <ol class="breadcrumb">
            <li><a href="${ctx}/index">首页</a></li>
            <li>监控运营</li>
            <li class="active">告警关联诊断</li>
        </ol>
    </div>
</div>

<div id="main-container main-tab-container">
    <div id="content" class="container">
        <div class="section">

            <div class="tab-content">
                <div class="tab-pane fade in active" id="detail">

                    <div class="row me-row">
                        <div id="slidePushMenus2" class="cbp-spmenu-push">


                            <div class="main col-xs-12">
                                <!-- <table id="mainm2" class="mainm" onclick="hideMenu('showLeftPush2','slidePushMenus2')"></table> -->
                                <div id="mainm2" class="mainm"></div>
                                <div class="content clearfix">


                                    <div class="row">
                                        <div class="col-xs-12">
                                            <table class='table table-vertical'>
                                                <tr>
胡斌's avatar
胡斌 committed
59 60
                                                    <td><label>开始时间:</label>${beginTime}</td>
                                                    <td><label>结束时间:</label>${endTime}</td>
莫林毅's avatar
莫林毅 committed
61 62
                                                </tr>
                                                <tr>
胡斌's avatar
胡斌 committed
63 64
                                                    <td><label>省份:</label>${provinceName}</td>
                                                    <td><label>类型:</label>${associationType}</td>
莫林毅's avatar
莫林毅 committed
65 66
                                                </tr>
                                                <tr>
胡斌's avatar
胡斌 committed
67 68
                                                    <td><label>名称:</label>${associationDesc}</td>
                                                    <td><label>告警个数:</label>${warningNum}</td>
莫林毅's avatar
莫林毅 committed
69 70 71 72 73 74
                                                </tr>
                                            </table>
                                            <br>
                                            <table class='table table-vertical'>
                                                <tr>
                                                   <th>省份</th>
胡斌's avatar
胡斌 committed
75 76
                                                   <th>指标名称</th>
                                                   <th>指标编码</th>
莫林毅's avatar
莫林毅 committed
77 78 79 80 81 82 83
                                                   <th>类型</th>
                                                   <th>名称</th>
                                                   <th>告警个数</th>
                                                   <th>异常程度</th>
                                                   <th>指标告警明细</th>

                                                </tr>
胡斌's avatar
胡斌 committed
84
                                                <c:forEach items="${warningDetailList}" var="item">
莫林毅's avatar
莫林毅 committed
85
                                                    <tr>
胡斌's avatar
胡斌 committed
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
                                                        <td>${item.PROVINCE_NAME}</td>
                                                        <td>${item.KPI_NAME}</td>
                                                        <td>${item.KPI_CODE}</td>
                                                        <td>
                                                            <c:if test="${item.ASSOCIATION_TYPE == 'c'}">
                                                                业务
                                                            </c:if>
                                                            <c:if test="${item.ASSOCIATION_TYPE == 'y'}">
                                                                渠道
                                                            </c:if>
                                                        </td>
                                                        <td>${item.ASSOCIATION_DESC}</td>
                                                        <td>${item.WARNING_NUM}</td>
                                                        <td>${item.INFLUENCE_LEVEL}</td>
                                                        <td><a href="#">告警明细</a></td>
莫林毅's avatar
莫林毅 committed
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
                                                    </tr>
                                                </c:forEach>
                                            </table>


                                        </div>
                                    </div>
                                </div>

                            </div>
                        </div>
                    </div>

                </div>
                <form action="#" method="get" id="listForm"></form>
                <input type="hidden" id="gzfxDetail" name="gzfxDetail" value='${gzfxDetailInfos}' />
                <%-- <input type="hidden" id="listDimKpi" name="listDimKpi" value='${listDimKpi}' />--%><%-- 所有指标--%>
                <input type="hidden" id="provinceAll" name="provinceAll" value='${provinces}' />
                <input type="hidden" id="indicatorsAll" name="indicatorsAll" value='${indicatorsAll}' />
                <input type="hidden" id="anaInfoSelected" name="anaInfoSelected" value='' />
            </div>
        </div>
    </div>
</div>

</body>
</html>