⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 orders_detail.jsp

📁 做的是一个客户关系管理系统
💻 JSP
字号:
<%@ page pageEncoding="GBK"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>jb-aptech毕业设计项目</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../../css/style.css" rel="stylesheet" type="text/css">
<script src="../../script/common.js"></script>
</head>
<body>

<div class="page_title">客户信息管理 &gt; 客户信息 &gt; 历史订单 &gt; 订单明细 </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>${orderList.orderid }</td>
		<th>日期</th>
		<td>${orderList.date}</td>
	</tr>
	<tr>
		<th height="28">送货地址</th>
		<td>${orderList.addr}</td>
		<th height="28">总金额(元)</th>
		<td>${SumPrice}</td>
	</tr>
	<tr>
		<th height="28">状态</th>
		<td><c:if test="${orderList.status=='5'}">
		已发货
		</c:if>
		<c:if test="${orderList.status=='6'}">
		已回款
		</c:if></td>
		<th height="28">&nbsp;</th>
		<td>&nbsp;</td>
	</tr>
	</table>
<br />
<table class="data_list_table">
	<tr>
		<th>商品</th>
		<th>数量</th>
		<th>单位</th>
		<th>单价(元)</th>
		<th>金额(元)</th>
	</tr>
	<c:if test="${message != null}">
		<tr>
			<td colspan="5" style="color:blue">${message}</td>
		</tr>
	</c:if>
	<c:if test="${message == null}">
	<c:forEach var="ProductList" items="${ProductList}">
	<tr>
		<td class="list_data_text">${ProductList.pname }</td>
		<td class="list_data_ltext">${ProductList.pcount }</td>
		<td class="list_data_text">${ProductList.punit}</td>
		<td class="list_data_text">${ProductList.price}</td>
		<td class="list_data_text">${ProductList.psumprice}</td>
	</tr>	
	</c:forEach>
	</c:if>
	</table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -