首页增加配置统计列表

This commit is contained in:
duandongmei
2018-07-11 16:15:23 +08:00
parent 23c2da6dee
commit 89ec630a33
12 changed files with 1411 additions and 696 deletions

View File

@@ -59,7 +59,7 @@ $(function(){
},
errorContainer: "#messageBox",
errorPlacement: function(error, element) {
$("#messageBox").text("输入有误,请先更正。");
$("#messageBox").text("<spring:message code='enter_error'/>");
if (element.is(":checkbox")||element.is(":radio")||element.parent().is(".input-append")){
error.appendTo(element.parent().parent());
} else {

View File

@@ -14,7 +14,7 @@
<script type="text/javascript">
$(document).ready(function() {
window.frames['mainFrame'].location="${ctx}/configure/statistics/configureStateStatistics";
//国际化切换
var lang = "${cookie.Language.value }".toLowerCase();
var $obj;
@@ -105,7 +105,6 @@ function page_turn(id, functionId,level, name, url,obj){
App.scrollTo()
App.startPageLoading({animate:true});
//调入页面
if(url.indexOf("?")>0){
url = url+"&functionId="+functionId;
@@ -363,13 +362,24 @@ window.onresize=function(){
<div class="page-bar">
<ul class="page-breadcrumb">
<li><a href="index.html"><spring:message code="home"></spring:message></a> <i class="fa fa-circle"></i></li>
<li><a href="${ctx}/configure/statistics/configureStateStatistics" target="mainFrame"><spring:message code="home"></spring:message></a> <i class="fa fa-circle"></i></li>
</ul>
</div>
<iframe id="mainFrame" name="mainFrame" width="100%" onload="changeFrameHeight()" frameborder="0" srcolling="no">
浏览器不支持嵌入式框架或配置为不显示嵌入式框架。
<iframe id="mainFrame" name="mainFrame" width="100%" onload="changeFrameHeight()" frameborder="0" srcolling="no">
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap">
<thead>
<tr>
<th><input type="checkbox" class="i-checks" id="checkAll"></th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
</iframe>

View File

@@ -0,0 +1,127 @@
<%@ page contentType="text/html;charset=UTF-8"%>
<%@ include file="/WEB-INF/include/taglib.jsp"%>
<html>
<head>
<style type="text/css">
.table > thead > tr > th {
vertical-align: bottom;
border-bottom: 2px solid #e7ecf1; }
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
border-top: 0;
background-color: #E9E9E9;
color: #333333;
height: 38px;
line-height: 38px;
padding-top: 0px;
padding-right: 10px;
padding-bottom: 0px;
padding-left: 10px;
}
.table > tbody + tbody {
border-top: 2px solid #D9D9D9; }
.table .table {
background-color: #fff; }
.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
padding-left:10px; }
.table-bordered {
border: 1px solid #D9D9D9; }
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
border: 1px solid #D9D9D9; }
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
border-bottom-width: 2px; }
</style>
</head>
<title>index</title>
</head>
<body class="page-full-width">
<!--<input id="page_load_num" type="hidden" />
<div id="alert" class="modal hide fade">
<div class="modal-header" id="modal_title">
<button type="button" class="close" data-dismiss="modal"
aria-hidden="true"></button>
<h3>
Note
</h3>
</div>
<div class="modal-body" id="modal_body">
</div>
<div class="modal-footer">
<button type="button" id="OK" class="btn red"
onclick="statisticProtocol()">
<s:text name="button.confirm"/>
</button>
<button type="button" data-dismiss="modal" class="btn">
<s:text name="button.cancel"/>
</button>
</div>
</div> -->
<div class="page-content">
<font size="4"><i class="fa fa-cogs"><spring:message code="configure_statistics_info"/></i></font> <a style="color:#333333" href="${ctx}/configure/statistics/configureStateStatistics" class="icon-refresh pull-right"> </a>
<h5 class="page-header"></h5>
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap">
<thead>
<tr>
<th><spring:message code="service_name"/></th>
<th><spring:message code="approved"/></th>
<th><spring:message code="unapproved"/></th>
<th><spring:message code="cancel_approved"/></th>
<th><spring:message code="created"/></th>
<th><spring:message code="deleted"/></th>
</tr>
</thead>
<tbody>
<c:forEach items="${configStatistics }" var="statistics" varStatus="status" step="1">
<tr>
<td>
<c:forEach items="${serviceList }" var="serviceDict" varStatus="status" step="1">
<c:if test="${serviceDict.serviceId eq statistics.service }">
<spring:message code="${serviceDict.serviceName }"/>
</c:if>
</c:forEach>
</td>
<td>
${statistics.approved }
</td>
<td>
${statistics.unapproved }
</td>
<td>
${statistics.cancle_approved }
</td>
<td>
${statistics.created }
</td>
<td>
${statistics.deleted }
</td>
</tr>
</c:forEach>
</tbody>
</table>
</div>
</body>
</html>