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

📄 list.jsp

📁 实现用户关系管理系统
💻 JSP
字号:
<%@ taglib prefix="html" uri="/WEB-INF/struts-html.tld"%>
<%@ taglib prefix="logic" uri="/WEB-INF/struts-logic.tld"%>
<%@ taglib uri="/WEB-INF/jb-common.tld" prefix="jb"%>
<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
<!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">
			客户信息管理
		</div>
		<div class="button_bar">
			<button class="common_button" onclick="help('');">
				帮助
			</button>
			<button class="common_button" onclick="reload();">
				查询
			</button>
		</div>
		<html:form action="/cstCustomer">
			<html:hidden property="oper" value="toList" />
			<table class="query_form_table">
				<tr>
					<th>
						客户编号
					</th>
					<td>
						<input />
					</td>
					<th>
						名称
					</th>
					<td>
						<input />
					</td>
					<th>
						地区
					</th>
					<td>
						<select>
							<option>
								全部
							</option>
							<option>
								北京
							</option>
							<option>
								华北
							</option>
							<option>
								中南
							</option>
							<option>
								东北
							</option>
							<option>
								西部
							</option>
						</select>
					</td>
				</tr>
				<tr>
					<th>
						客户经理
					</th>
					<td>
						<input />
					</td>
					<th>
						客户等级
					</th>
					<td>
						<select>
							<option>
								全部
							</option>
							<option>
								战略合作伙伴
							</option>
							<option>
								合作伙伴
							</option>
							<option>
								大客户
							</option>
							<option>
								普通客户
							</option>
						</select>
					</td>
					<th>
					</th>
					<td>
					</td>
				</tr>
			</table>
			<br />
			<table class="data_list_table">
				<tr>
					<th>
						序号
					</th>
					<th>
						客户编号
					</th>
					<th>
						名称
					</th>
					<th>
						地区
					</th>
					<th>
						客户经理
					</th>
					<th>
						客户等级
					</th>
					<th>
						操作
					</th>
				</tr>

				<logic:iterate id="item" name="cstCustomerForm"
					property="pageResult.list"
					type="org.jb.y2t308.team3.entity.CstCustomer" indexId="a">
					<tr>
						<td class="list_data_number">
							${a+1 }
						</td>
						<td class="list_data_text">
							${item.custNo }
						</td>
						<td class="list_data_ltext">
							${item.custName }
						</td>
						<td class="list_data_text">
							${item.custRegion }
						</td>
						<td class="list_data_text">
							${item.custManagerName}
						</td>
						<td class="list_data_text">
							${item.custLevelLabel }
						</td>
						<td class="list_data_op">
							<blockquote>
								<a href="cstCustomer.do?oper=toEdit&amp;custNo=${item.custNo }"><img
										title="编辑" src="images/bt_edit.gif" class="op_button"> </a><a
									href="cstLinkman.do?oper=toLinkMan&amp;custNo=${item.custNo}"><img
										title="联系人" src="images/bt_linkman.gif" class="op_button">
								</a>

								<a href="cstActivity.do?op=toActivities&custNo=${item.custNo}"><img
										title="交往记录" src="images/bt_acti.gif" class="op_button" /> </a>

								<a href="orders.do?operate=toOrderList"><img title="历史订单" src="images/bt_orders.gif" class="op_button"></a>
								<a
									onclick="javascript:if(confirm('您确定要删除么?')){return true;}else{return false;}"
									href="cstCustomer.do?oper=doDelete&amp;custNo=${item.custNo }"><img
										title="删除" src="images/bt_del.gif" class="op_button"> </a>
							</blockquote>
						</td>
					</tr>
				</logic:iterate>
			</table>
			<jb:pager form="cstCustomerForm" />
		</html:form>
	</body>
</html>

⌨️ 快捷键说明

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