58 lines
2.6 KiB
Plaintext
58 lines
2.6 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/fmt" prefix="fmt"%>
|
||
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||
|
|
<script type="text/javascript">
|
||
|
|
|
||
|
|
</script>
|
||
|
|
<input id="pages" type="hidden" value="${page.pages }"/>
|
||
|
|
<input id="pageNum" type="hidden" value="${page.pageNum }"/>
|
||
|
|
<div id="listul">
|
||
|
|
<ul class="list-ul products-list product-list-in-box"
|
||
|
|
style="-webkit-user-select: none;/*禁用手机浏览器的用户选择功能 */
|
||
|
|
-moz-user-select: none;">
|
||
|
|
<c:forEach var="current" items="${list }">
|
||
|
|
<%-- <input id="id" type="hidden" value="${current.id }"/> --%>
|
||
|
|
<c:set value="${current.mrecv }" var="mrecv" />
|
||
|
|
<c:forEach var="current1" items="${mrecv }">
|
||
|
|
<li id="${current1.id }" data-name="${current.id }" class="list-li"
|
||
|
|
<c:if test="${current1.status =='U' }">style="font-weight:bold"</c:if>>
|
||
|
|
<div id="${current1.id }" data-name="${current.id }">
|
||
|
|
<div class="product-img" id="${current1.id }"
|
||
|
|
data-name="${current.id }"
|
||
|
|
style="margin-top:15px;display: table-cell;vertical-align: middle">
|
||
|
|
<img id="${current1.id }" data-name="${current.id }"
|
||
|
|
src="<%=request.getContextPath()%>/plugins/AdminLTE/img/avatar2.png"
|
||
|
|
alt="Product Image">
|
||
|
|
</div>
|
||
|
|
<div class="con product-info" id="${current1.id }"
|
||
|
|
data-name="${current.id }">
|
||
|
|
<a href="javascript:void(0)" class="product-title"
|
||
|
|
id="${current1.id }" data-name="${current.id }"> <c:if
|
||
|
|
test="${!empty current.typename}">${current.typename.name }
|
||
|
|
</c:if>
|
||
|
|
<c:if test="${empty current.typename}">--
|
||
|
|
</c:if>
|
||
|
|
<c:if test="${current1.status eq 'U' }">
|
||
|
|
<i class="fa fa-circle" style="color:#ff0000"></i>
|
||
|
|
</c:if> <span id="${current1.id }" data-name="${current.id }"
|
||
|
|
class="label label-success pull-right" style="margin-top:20px">${fn:substring(current.sdt,0,16) }</span>
|
||
|
|
</a> <span class="product-description" id="${current1.id }"
|
||
|
|
data-name="${current.id }"> <c:if
|
||
|
|
test="${empty current.content }">--</c:if> <c:if
|
||
|
|
test="${!empty current.content }">${current.content }</c:if>
|
||
|
|
</span>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</li>
|
||
|
|
</c:forEach>
|
||
|
|
</c:forEach>
|
||
|
|
</ul>
|
||
|
|
</div>
|
||
|
|
<div class="box-footer text-center" id="loadmore">
|
||
|
|
<a href="javascript:" class="uppercase" id="last" onclick="last()">上一页</a>
|
||
|
|
<a class="uppercase">第${page.pageNum }页</a> <a href="javascript:"
|
||
|
|
class="uppercase" id="next" onclick="next()">下一页</a>
|
||
|
|
</div>
|