📄 searchnobody.jsp
字号:
<%@ page language="java" contentType="text/html; charset=GBK"
pageEncoding="GBK"%>
<%@page isELIgnored="false" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@taglib prefix="bean" uri="http://struts.apache.org/tags-bean"%>
<!-- 定义标题 -->
<c:set var="pageTitle" scope="application">
<bean:message key="product.title.search"/>
</c:set>
<p>
<center><h3><bean:message key="product.title.searchResult"/></h3></center>
<table style="width:100%;border:dashed 1px #336699;font-size:14px" align="center" cellspacing="0">
<tr style="text-align:left;background-color:#339999">
<th><span class="th_font"><bean:message key="product.property.id"/></span></th>
<th><span class="th_font"><bean:message key="product.property.no"/></span></th>
<th><span class="th_font"><bean:message key="product.property.name"/></span></th>
<th><span class="th_font"><bean:message key="product.property.size"/></span></th>
<th><span class="th_font"><bean:message key="product.property.madewhere"/></span></th>
<th><span class="th_font"><bean:message key="product.property.inprice"/></span></th>
<th><span class="th_font"><bean:message key="product.property.saleprice"/></span></th>
<th><span class="th_font"><bean:message key="product.property.lowestprice"/></span></th>
<th><span class="th_font"><bean:message key="product.property.type"/></span></th>
<th><span class="th_font"><bean:message key="product.property.unit"/></span></th>
</tr>
<c:if test="${ not empty searchByNo }">
<!-- 查看商品 -->
<c:set var="p" value="${ searchByNo }"/>
<c:set var="id" value="${ p.id }"/>
<c:set var="no" value="${ p.no }" />
<c:set var="name" value="${ p.name }" />
<c:set var="size" value="${ p.size }" />
<c:set var="where" value="${ p.madewhere }" />
<c:set var="iprice" value="${ p.in_price }" />
<c:set var="sprice" value="${ p.sale_price }" />
<c:set var="lprice" value="${ p.lowest_price }" />
<c:set var="type" value="${ p.type }" />
<c:set var="unit" value="${ p.unit }" />
<tr>
<td>${ id }</td>
<td>${ no }</td>
<td>${ name }</td>
<td>${ size }</td>
<td>${ where }</td>
<td>${ iprice }</td>
<td>${ sprice }</td>
<td>${ lprice }</td>
<td>${ type }</td>
<td>${ unit }</td>
</tr>
</c:if>
<c:if test="${ empty searchByNo }">
<tr><td colspan="10"><div align="center">No Result</div></td></tr>
</c:if>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -