📄 customerlist.jsp
字号:
<%@ page language="java" 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://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template" prefix="template" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested" prefix="nested" %>
<%@ include file="/publicModel.jsp"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
<head>
<html:base />
<title>customerList.jsp</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<html:form action="/customerSelect.do">
<table border="1">
<tr>
<td colspan="12" align="center">客户设置查询</td>
</tr>
<tr>
<td>客户名称</td>
<td><html:select property="cusName">
<html:option value="请选择">请选择</html:option>
<html:options collection="customer" labelProperty="cusName" property="cusName"/>
</html:select></td>
<td>所属地区</td>
<td><html:select property="areaCode">
<html:option value="请选择">请选择</html:option>
<html:options collection="areaList" labelProperty="areaName" property="areaCode"/>
</html:select></td>
<td>所属行业</td>
<td><html:select property="tradeCode">
<html:option value="请选择">请选择</html:option>
<html:options collection="tradeList" labelProperty="tradeName" property="tradeCode"/>
</html:select></td>
<td>所属业务员</td>
<td><html:select property="personCode">
<html:option value="请选择">请选择</html:option>
<html:options collection="yewuList" labelProperty="personName" property="personCode"/>
</html:select></td>
<td>分管部门</td>
<td><html:select property="deptCode">
<html:option value="请选择">请选择</html:option>
<html:options collection="bumenList" labelProperty="deptName" property="deptCode"/>
</html:select></td>
<td><html:submit value="查询"/></td>
</tr>
</table>
</html:form>
<table border="1" width="" id="PowerTable">
<tr>
<td>客户编码</td>
<td>客户名称</td>
<td>所属地区</td>
<td>所属行业</td>
<td>客户地址</td>
<td>邮政编码</td>
<td>税号</td>
<td>法人名称</td>
<td>开户银行</td>
<td>银行帐号</td>
<td>上级单位</td>
<td>分管部门</td>
<td>所属销售员</td>
<td>停用</td>
<td>信用等级</td>
<td>信用额度</td>
<td>账龄额度</td>
<td>信用天数</td>
<td><html:link action="/customerView.do?oper=add">新增</html:link></td>
<logic:iterate id="customer" name="customerListnn">
<tr>
<td>${customer.cusCode}</td>
<td>${customer.cusName }</td>
<td>${customer.areaCode}</td>
<td>${customer.tradeCode}</td>
<td>${customer.address}</td>
<td>${customer.postCode}</td>
<td>${customer.taxCode}</td>
<td>${customer.fictPerson}</td>
<td>${customer.bank}</td>
<td>${customer.bankAccount}</td>
<td>${customer.cusSuper}</td>
<td>${customer.deptCode}</td>
<td>${customer.personCode}</td>
<td>${customer.stopFlag}</td>
<td>${customer.creditGrade}</td>
<td>${customer.creditMoney}</td>
<td>${customer.creditageMoney}</td>
<td>${customer.creditDate}</td>
<td><html:link action="/customerView.do?oper=update" paramId="cusCode" paramName="customer" paramProperty="cusCode">修改</html:link>
<html:link action="/customerView.do?oper=delete" paramId="cusCode" paramName="customer" paramProperty="cusCode">删除</html:link>
</td>
</tr>
</logic:iterate>
</tr>
</table>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -