📄 show_details.jsp
字号:
<%@ page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"%><%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %><html> <head> <title>查看订单明细</title> </head> <body bgcolor="#FFDD66"> <center> <c:if test="${items != null}"> <h2>您所购买的商品如下</h2> <c:set var="price" value="0"/> <table width="90%" cellpadding="1" cellspacing="1" bgcolor="blue"> <tr bgcolor="#FFDD66" align="center"> <th>序号</th> <th>产品名称</th> <th>单价</th> <th>数量</th> <th>小计</th> </tr> <c:forEach var="item" items="${items }" varStatus="ind"> <tr bgcolor="#FFDD66" align="center"> <td>${ind.count }</td> <td>${item.product.productName }</td> <td>¥${item.product.unitPrice }</td> <td>${item.quntity}</td> <td>¥${item.cost }</td> </tr> <c:set var="price" value="${item.cost + price}" /> </c:forEach> <c:if test="${! empty items}"> <tr bgcolor="#F2F2F2" align="center"> <td colspan="7">总计:<font color="red">¥${price }</font></td> </tr> </c:if> <c:if test="${empty items}"> <tr bgcolor="#F2F2F2" align="center"> <td colspan="7">奇怪,此订单米有任何商品.</td> </tr> </c:if> </table> </c:if> </center> </body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -