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

📄 orders_list.jsp

📁 crm系统 有源码 及相关文档sql2005 数据库 客户反馈模块
💻 JSP
字号:
<%@ page language="java" pageEncoding="GBK" %>

<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="/WEB-INF/jb-common.tld" prefix="jb"  %>
<script src="validate.js" ></script>
<script src="icommon.js" ></script>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
  <head>
    <title>查看历史订单</title>
	<link rel="stylesheet" type="text/css" href="styles.css" >
  </head>  
  <body>
  	<html:hidden property="o" value="toList" />
  	<input type="hidden" name="id" value="${item.custNo }" />
  	<div class="page_title">查看历史订单</div>
  	<div class="button_bar">
		<button class="common_button" onclick="help('');">帮助</button>
		<button class="common_button" onclick="javascript:history.go(-1);">返回</button>  
	</div>
		<table class="query_form_table" border="0" cellPadding="3" cellSpacing="0">
			<tr>
				<th>客户编号</th>
				<td>${item.custNo }&nbsp;</td>
				<th>客户名称</th>
				<td>${item.custName }&nbsp;</td>
			</tr>
		</table>
		<!-- 列表数据 -->
		<br />
		<table class="data_list_table" border="0" cellPadding="3" cellSpacing="0">
		<tr>
			<th>订单编号</th>
			<th>日期</th>
			<th>送货地址</th>
			<th>状态</th>
			<th>操作</th>
		</tr>
		<logic:iterate id="a" name="list"
			type="org.jb.y272.team0.entity.VOrders"> 
			<tr>
				<td class="list_data_number">${a.odrId }&nbsp;</td>
				<td class="list_data_text"><bean:write name="a" property="odrDate" format="yyyy年MM月dd日" />&nbsp;</td>
				<td class="list_data_ltext">${a.odrAddr }&nbsp;</td>
				<td class="list_data_text"><%
					if ("5".equals(a.getOdrStatus())){
						out.print("未回款");
					}else if ("6".equals(a.getOdrStatus())){
						out.print("已回款");
					}
				 %>&nbsp;</td>
				<td class="list_data_op">
					<img onclick="window.location.href='?o=toDetail&id=${item.custNo }&oid=${a.odrId }';" title="查看明细" src="images/bt_detail.gif" class="op_button" />
				</td>
			</tr>			
		</logic:iterate>
		<logic:empty name="list">
			<tr><td class="data_cell" colspan="20" style="text-align:center;height:40px;">没有记录</td></tr>
		</logic:empty>
		</table>
		
  </body>
</html:html>

⌨️ 快捷键说明

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