12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <%--
- time:2017-01-06 11:35:59
- --%>
- <%@page language="java" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html"%>
- <html>
- <head>
- <title>公告读取明细</title>
- <%@include file="/commons/include/get.jsp"%>
- </head>
- <body>
- <div class="panel">
- <div class="panel-top">
- <div class="tbar-title">
- <span class="tbar-label">公告读取明细</span>
- </div>
- <div class="panel-toolbar">
- <div class="toolBar">
- <div class="group">
- <c:if test="${hyorgg eq 'HY'}">
- <a class="link back" href="listHY.ht"><span></span>返回</a>
- </c:if>
- <c:if test="${hyorgg eq 'GG'}">
- <a class="link back" href="list.ht" ><span></span>返回</a>
- </c:if>
- </div>
- <div align="left">
- <a class="link search" href="readBulletinDetail.ht?id=${bulletinId}&hyorgg=${hyorgg}"><span></span>已读公告(<font color="blue">${sysBulletinsListYesSize} </font>)</a>
- </div>
- <div>
- <a class="link search" href="unreadBulletinDetail.ht?id=${bulletinId}&hyorgg=${hyorgg}"><span></span>未读公告(<font color="red">${sysBulletinsListNoSize}</font>)</a>
- </div>
- </div>
- </div>
- </div>
- <table class="table-grid table-list" cellpadding="1" cellspacing="1">
- <tr>
- <th>所属组织</th>
- <th>用户名称</th>
- <th>办公电话</th>
- <th>移动电话</th>
- <th>是否已读</th>
- <c:if test="${type == 1}">
- <th>已读时间</th>
- </c:if>
- </tr>
- <c:forEach items="${sysBulletinsList}" var="sysBulletinsList" varStatus="status">
- <tr>
- <td style="text-align: left">${sysBulletinsList.orgName}</td>
- <td style="text-align: left">${sysBulletinsList.fullname}</td>
- <td style="text-align: left">${sysBulletinsList.phone}</td>
- <td style="text-align: left">${sysBulletinsList.mobile}</td>
- <td style="text-align: left">
- <c:choose>
- <c:when test="${sysBulletinsList.isread == 0}">
- <font color="red">未读消息</font>
- </c:when>
- <c:otherwise>
- <font color="blue">已读消息</font>
- </c:otherwise>
- </c:choose>
- </td>
- <c:if test="${type == 1}">
- <td style="text-align: left">
- <fmt:formatDate value="${sysBulletinsList.readtime}" pattern="yyyy-MM-dd"/>
- </td>
- </c:if>
- </tr>
- </c:forEach>
- </table>
- <hotent:paging tableId="sysBulletins"/>
- </div>
- </div>
- </body>
- </html>
|