123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html" %>
- <html>
- <head>
- <%@include file="/commons/include/get.jsp" %>
- <title>日程查询列表</title>
- <script type="text/javascript" src="${ctx}/js/hotent/platform/system/SysPlanScript.js"></script>
- </head>
- <body>
-
- <div class="panel">
- <div class="panel-top">
- <div class="tbar-title">
- <span class="tbar-label">>日程查询列表</span>
- </div>
- <div class="panel-toolbar">
- <c:forEach items="${dicList}" var="dic" varStatus="vs">
- <div>
- <c:forEach items="${map}" var="map" varStatus="vs">
- <c:if test="${dic.itemValue eq map.key}">
- <a class="link search" href="search.ht?planLevel=${dic.itemValue}"><span></span>${dic.itemName}
- (
- <c:choose>
- <c:when test="${dic.itemValue eq 1}"><font color="blue">${map.value}</font></c:when>
- <c:when test="${dic.itemValue eq 2}"><font color="green">${map.value}</font></c:when>
- <c:when test="${dic.itemValue eq 3}"><font color="red">${map.value}</font></c:when>
- <c:otherwise><font>${map.value}</font></c:otherwise>
- </c:choose>
- )
- </a>
- </c:if>
- </c:forEach>
- </div>
- </c:forEach>
- <div class="toolBar">
- <div class="group" style="margin-top: -5px;margin-left: 0px;"><a class="link search" id="btnSearch"><span></span>查询</a></div>
- </div>
- </div>
- <div class="panel-search">
- <form id="searchForm" method="post" action="${ctx}/platform/system/sysPlan/search.ht">
- <input type="hidden" id="queryUserId" name="queryUserId" value="${queryUserId}" />
- <ul class="row">
- <li><span class="label">日志时间:</span><input type="text" name="Q_taskName_SL" class="inputText" value="${param['Q_taskName_SL']}"/></li>
- <li><span class="label">日志名称:</span><input type="text" name="Q_projectName_SL" class="inputText" value="${param['Q_projectName_SL']}"/></li>
- <li><span class="label">下属名称:</span><input type="text" name="Q_charge_SL" class="inputText" value="${param['Q_charge_SL']}"/></li>
- </ul>
- <ul class="row">
- <li><span class="label">开始时间 从:</span> <input name="Q_beginStartTime_DL" class="inputText date" value="${param['Q_beginStartTime_DL']}"/></li>
- <li><span class="label">至: </span><input name="Q_endStartTime_DG" class="inputText date" value="${param['Q_endStartTime_DG']}"> </li>
- </ul>
- <ul class="row">
- <li><span class="label">结束时间 从:</span> <input name="Q_beginEndTime_DL" class="inputText date" value="${param['Q_beginEndTime_DL']}"/></li>
- <li><span class="label">至: </span><input name="Q_endEndTime_DG" class="inputText date" value="${param['Q_endEndTime_DG']}"></li>
- </ul>
- </form>
- </div>
- </div>
- <div class="panel-body">
-
- <display:table name="sysPlanList" id="sysPlan" requestURI="${ctx}/platform/system/sysPlan/search.ht" sort="external" cellpadding="1" cellspacing="1" class="table-grid">
- <display:column property="taskName" title="日志时间" sortable="true" sortName="TASKNAME"></display:column>
- <display:column property="projectName" title="日志名称" sortable="true" sortName="PROJECTNAME"></display:column>
- <display:column property="charge" title="负责人(下属)" sortable="true" sortName="CHARGE"></display:column>
- <display:column title="开始时间" sortable="true" sortName="STARTTIME" style="width:150px;">
- <fmt:formatDate value='${sysPlan.startTime}' pattern='yyyy-MM-dd hh:mm:ss'/>
- </display:column>
- <display:column title="结束时间" sortable="true" sortName="ENDTIME" style="width:150px;">
- <fmt:formatDate value='${sysPlan.endTime}' pattern='yyyy-MM-dd hh:mm:ss'/>
- </display:column>
- <display:column title="任务状态" sortable="true" sortName="RATE" style="width:70px;">
- <c:choose>
- <c:when test="${sysPlan.rate == null || sysPlan.rate == ''|| sysPlan.rate == 0}">未开始</c:when>
- <c:when test="${sysPlan.rate == 100}">已完成</c:when>
- <c:otherwise>完成${sysPlan.rate}%</c:otherwise>
- </c:choose>
- </display:column>
- <display:column title="日志级别" sortable="true" sortName="PLANLEVEL" style="width:70px;">
-
-
- <c:choose>
- <c:when test="${empty dicList}">
- 请在数据字典定义一个nodeKey为rzlx的分类
- </c:when>
- <c:otherwise>
- <c:forEach items="${dicList }" var="dic">
- <c:if test="${dic.itemValue eq sysPlan.planLevel}">
- <c:choose>
- <c:when test="${dic.itemValue eq 1}"><font color="blue">${dic.itemName}</font></c:when>
- <c:when test="${dic.itemValue eq 2}"><font color="green">${dic.itemName}</font></c:when>
- <c:when test="${dic.itemValue eq 3}"><font color="red">${dic.itemName}</font></c:when>
- <c:otherwise><font>${map.value}</font></c:otherwise>
- </c:choose>
- </c:if>
- </c:forEach>
- </c:otherwise>
- </c:choose>
- </display:column>
-
- <display:column title="管理" media="html" style="width:70px;text-align:center" > <!-- class="rowOps" -->
- <a href="${ctx}/platform/system/sysPlan/subscribeGet.ht?type=subscribe&id=${sysPlan.id}&subscribeId=${sysPlan.subscribeId}&queryUserId=${queryUserId}&isSearch=true" class="link detail">明细</a>
- </display:column>
- </display:table>
- <hotent:paging tableId="sysPlanItem"/>
- </div><!-- end of panel-body -->
- </div> <!-- end of panel -->
- </body>
- </html>
|