📄 order_three.jsp
字号:
<%@page contentType="text/html;charset=utf-8"%><%@include file="../common/taglib.jsp"%><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>生成订单- 当当网</title> <link href="${pageContext.request.contextPath}/css/login.css" rel="stylesheet" type="text/css" /> <link href="${pageContext.request.contextPath}/css/page_bottom.css" rel="stylesheet" type="text/css" /> <style type="text/css">.table td{color:#999999;} </style> </head> <body> <%@include file="../common/head1.jsp"%> <div class="login_step"> 生成订单步骤: 1.填写送货地址>2.选择送货方式 > <span class="red_bold">3.确认订单信息 ></span>4.生成订单 </div> <br /> <div class="fill_message"> <form method="post" action="orderThree.do" id="ctl00"> <table class="tab_login"> <tr> <td valign="top" class="w1"> 订单日期: </td> <td> ${orderForm.orderDate} </td> </tr> <tr> <td valign="top" class="w1"> 货款: </td> <td> ¥${orderForm.orderPrice} </td> </tr> <tr> <td valign="top" class="w1"> 运费: </td> <td> ¥${orderForm.sendFee} </td> </tr> <tr> <td valign="top" class="w1"> 总计: </td> <td> ¥${orderForm.totalPrice} </td> </tr> <tr> <td valign="top" class="w1"> 送货时间: </td> <td> ${orderForm.sendDate} </td> </tr> <tr> <td valign="top" class="w1"> 邮寄地址: </td> <td> <pre> ${orderForm.fullAddress} ${orderForm.receiveName}(收) 邮编:${orderForm.postalCode} 移动电话:${orderForm.mobile} 固定电话:${orderForm.phone}</pre> </td> </tr> <tr> <td valign="top" class="w1"> 详单: </td> <td> <table width="100%" class="table"> <thead> <tr> <td> <strong>商品</strong> </td> <td> <strong>单价</strong> </td> <td> <strong>数量</strong> </td> <td> <strong>小计</strong> </td> </tr> </thead> <tbody> <c:forEach items="${orderForm.items }" var="item"> <tr> <td> ${item.product.product_name } </td> <td> ¥${item.dangPrice} </td> <td> ${item.productNum} </td> <td> ¥${item.amount} </td> </tr> </c:forEach> </tbody> </table> </td> </tr> </table> <div class="login_in"> <input type="button" class="button_1" value="上一步" onclick="history.go(-1);" /> <input type="submit" id="btnClientRegister" class="button_1" value="完成" /> </div> </form> </div> <%@include file="../common/foot1.jsp"%> </body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -