118 lines
5.1 KiB
Plaintext
118 lines
5.1 KiB
Plaintext
<%@ page language="java" pageEncoding="UTF-8"%>
|
|
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
|
|
<%@ page import="com.sipai.entity.base.ServerObject"%>
|
|
<%@ taglib uri="http://www.springsecurity.org/jsp" prefix="security"%>
|
|
<!DOCTYPE html>
|
|
<!-- <html lang="zh-CN"> -->
|
|
<!-- BEGIN HEAD -->
|
|
<head>
|
|
<title><%= ServerObject.atttable.get("TOPTITLE")%></title>
|
|
<!-- 引用页头及CSS页-->
|
|
<jsp:include page="/jsp/inc.jsp"></jsp:include>
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
|
|
});
|
|
</script>
|
|
|
|
</head>
|
|
<body onload="initMenu()" class="hold-transition ${cu.themeclass} sidebar-mini">
|
|
<div class="wrapper">
|
|
<!-- 引用top -->
|
|
<%-- <jsp:include page="/jsp/top.jsp"></jsp:include> --%>
|
|
<!-- 菜单栏 -->
|
|
<%-- <jsp:include page="/jsp/left.jsp"></jsp:include> --%>
|
|
<div class="content-wrapper">
|
|
<!-- Content Header (Page header) -->
|
|
<section class="content-header">
|
|
<h1 id ="head_title"></h1>
|
|
<ol class="breadcrumb">
|
|
<li><a id ='head_firstlevel' href="#"><i class="fa fa-dashboard"></i> </a></li>
|
|
<!-- <li class="active">Here</li> -->
|
|
</ol>
|
|
</section>
|
|
<!-- Main content -->
|
|
<section class="content container-fluid">
|
|
<div id="mainAlertdiv"></div>
|
|
<div id="subDiv"></div>
|
|
<div >
|
|
<div class="box box-primary">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">本月维护排行榜</h3>
|
|
|
|
<div class="box-tools pull-right">
|
|
</div>
|
|
</div>
|
|
<!-- /.box-header -->
|
|
<div class="box-body">
|
|
<ul class="products-list product-list-in-box">
|
|
|
|
<c:forEach var="item" items="${result}" varStatus="status">
|
|
<li class="item">
|
|
<div class="product-img">
|
|
<c:choose>
|
|
<c:when test="${empty item.user.userDetail or item.user.userDetail=='null'}">
|
|
<c:choose>
|
|
<c:when test="${item.user.sex=='0'}">
|
|
<img src="<%=request.getContextPath()%>/plugins/AdminLTE/img/avatar2.png" class="img-circle" alt="User Image">
|
|
</c:when>
|
|
<c:otherwise>
|
|
<img src="<%=request.getContextPath()%>/plugins/AdminLTE/img/avatar5.png" class="img-circle" alt="User Image">
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</c:when>
|
|
<c:otherwise >
|
|
<img src="${item.user.userDetail.icon}" class="img-circle" alt="User Image">
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</div>
|
|
<div class="product-info">
|
|
<a href="javascript:void(0)" class="product-title">${item.user.caption}
|
|
<c:choose>
|
|
<c:when test="${status.index == 0}">
|
|
<span class="label label-warning pull-right">${status.index + 1}</span></a>
|
|
</c:when>
|
|
<c:when test="${status.index == 1}">
|
|
<span class="label label-info pull-right">${status.index + 1}</span></a>
|
|
</c:when>
|
|
<c:when test="${status.index == 2}">
|
|
<span class="label label-danger pull-right">${status.index + 1}</span></a>
|
|
</c:when>
|
|
<c:otherwise>
|
|
<span class="label label-default pull-right">${status.index + 1}</span></a>
|
|
</c:otherwise>
|
|
</c:choose>
|
|
|
|
<span class="product-description">
|
|
运维总数:${item.totalNum}
|
|
</span>
|
|
<c:if test="${item.userId==cu.id}">
|
|
<a ><i class="fa fa-circle text-info"></i> </a>
|
|
</c:if>
|
|
|
|
</div>
|
|
</li>
|
|
<!-- /.item -->
|
|
</c:forEach>
|
|
</ul>
|
|
</div>
|
|
<!-- /.box-body -->
|
|
<div class="box-footer text-center">
|
|
<!-- <a href="javascript:void(0)" class="uppercase">View All Products</a> -->
|
|
</div>
|
|
<!-- /.box-footer -->
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
|
<!-- /.content -->
|
|
</div>
|
|
<%-- <jsp:include page="/jsp/bottom.jsp"></jsp:include> --%>
|
|
<%-- <jsp:include page="/jsp/side.jsp"></jsp:include> --%>
|
|
</div>
|
|
</body>
|
|
</html> |