📄 viewthread_trade_list.jsp
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c"%>
<table summary="Trade List" cellspacing="0" cellpadding="0">
<thead class="separation">
<tr>
<th>
<c:choose>
<c:when test="${showtradetypemenu}">
<span id="tradetypes" class="dropmenu" onmouseover="showMenu(this.id)">柜台商品</span>
<ul class="popupmenu_popup" id="tradetypes_menu" style="display: none;">
<li><a href="viewthread.jsp?do=viewtradelist&tid=${thread.tid}" ajaxtarget="ajaxtradelist">全部</a></li>
<c:forEach items="${threadtradetypes}" var="tradetype">
<c:choose>
<c:when test="${tradetype.typeid>0}"><li><a href="viewthread.jsp?do=viewtradelist&tid=${thread.tid}tid&tradetypeid=${tradetype.typeid}" ajaxtarget="ajaxtradelist">${tradetypes[tradetype.typeid]}</a></li></c:when>
<c:otherwise><li><a href="viewthread.jsp?do=viewtradelist&tid=${thread.tid}tid&tradetypeid=0" ajaxtarget="ajaxtradelist">无类别商品</a></li></c:otherwise>
</c:choose>
</c:forEach>
</ul>
</c:when>
<c:otherwise>柜台商品</c:otherwise>
</c:choose>
</th>
<td class="price">现价</td>
<td class="nums">数量</td>
<td class="time">剩余时间</td>
</tr>
</thead>
<c:forEach items="${tradelist}" var="trade">
<tr>
<th><c:if test="${trade.typeid>0}"><a href="search.jsp?srchtype=trade&srchtypeid=${trade.typeid}&searchsubmit=yes" target="_blank"><em>{tradetypes[trade.typeid]}</em></a> </c:if><a href="viewthread.jsp?do=tradeinfo&tid=${trade.tid}&pid=${trade.pid}" target="_blank">${trade.subject}</a></th>
<td class="price"><strong>${trade.price}</strong> 元</td>
<td class="nums">${trade.amount}</td>
<td class="time">
<c:choose>
<c:when test="${trade.closed>0}"><em>成交结束</em></c:when>
<c:when test="${trade.expiration>0}">${trade.expiration}天${trade.expirationhour}小时</c:when>
<c:when test="${trade.expiration==-1}"><em>成交结束</em></c:when>
</c:choose>
</td>
</tr>
</c:forEach>
</table>
<c:if test="${!empty multi.multipage}"><div class="pages_btns">${multi.multipage}</div></c:if>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -