📄 orders_detail.jsp
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>jb-aptech毕业设计项目</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="html/css/style.css" rel="stylesheet" type="text/css">
<script src="html/script/common.js"></script>
</head>
<body>
<div class="page_title">客户信息管理 > 客户信息 > 历史订单 > 订单明细 </div>
<div class="button_bar">
<button class="common_button" onclick="help('');">帮助</button>
<button class="common_button" onclick="back();">返回</button>
</div>
<table class="query_form_table" height="59">
<tr>
<th>订单编号</th>
<td>${oi.orderId}</td>
<th>日期</th>
<td>${oi.orderTime}</td>
</tr>
<tr>
<th height="28">送货地址</th>
<td>${oi.orderAddress} </td>
<th height="28">总金额(元)</th>
<td>${oi.orderHavingMoney}</td>
</tr>
<tr>
<th height="28">状态</th>
<td>${oi.orderState}</td>
<th height="28"> </th>
<td> </td>
</tr>
</table>
<br />
<table class="data_list_table">
<tr>
<th>商品</th>
<th>数量</th>
<th>单位</th>
<th>金额(元)</th>
</tr>
<c:forEach items="${olList}" var="ol">
<tr>
<td class="list_data_text">${ol.productInfo.productName}</td>
<td class="list_data_ltext">${ol.listQuantity}</td>
<td class="list_data_text">${ol.productInfo.productUnit}</td>
<td class="list_data_text">${ol.listMoney}</td>
</tr></c:forEach>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -