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

📄 refundlist.jsp

📁 java阿里巴巴代码
💻 JSP
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@ page contentType="text/html;charset=GBK"%>
<jsp:useBean id="custBean" class="com.saas.biz.custMgr.Custinfo" scope="page"/>
<%@ page import="java.util.*"%>
<%
  String name="";
  if(request.getParameter("cust_name")!=null){
   name=request.getParameter("cust_name");
  }
  ArrayList list=custBean.searchCust(name);
%>
<html>
	<head>
		<title>农业企业信息化综合服务平台</title>
		<link href="/style/layout.css" rel="stylesheet" type="text/css">
		<link href="/style/daohang.css" rel="stylesheet" type="text/css">
		<link href="/style/manager.css" rel="stylesheet" type="text/css">
	</head>
	<body>
		<table width=100% border=0 cellpadding=5 cellspacing=1 align=center bgcolor="#dddddd">
			<tr>
				<td class="line1"style="background-color:#e2e2e2; color:#000000;  font-weight:bold; font-size:13px;"align="center" align="center" width="25%">
					会员名称
				</td>
				<td style="background-color:#e2e2e2; color:#000000;  font-weight:bold; font-size:13px;" align="center" width="15%">
					联系电话
				</td>
				<td style="background-color:#e2e2e2; color:#000000;  font-weight:bold; font-size:13px;" align="center" width="20%">
					公司网址
				</td>
				<td style="background-color:#e2e2e2; color:#000000;  font-weight:bold; font-size:13px;" align="center" width="30%">
					地址
				</td>
			</tr>
			<%
			    if (list != null && list.size() > 0) {
					for (int i=0;i<list.size();i++) {
						HashMap map = (HashMap) list.get(i);
						String cust_id = "";
						String cust_name = "";
						String phone = "";
						String website = "";
						String cust_addr = "";
						cust_id = map.get("cust_id").toString();
						cust_name = map.get("cust_name").toString();
						if (map.get("group_contact_phone") != null) {
					      phone = map.get("group_contact_phone").toString();
						}
						if (map.get("company_address") != null) {
					      cust_addr = map.get("company_address").toString();
						}
						if (map.get("website") != null) {
					      website = map.get("website").toString();
						}
					%>
					<tr style="background-color:#f9f9f9; ">
						<td style=" color:#000000;" align="left"><input type="radio" name="name_rad" id="cust_<%=i%>" style="margin-left: 5px;margin-right: 2px" onclick="setCustId('<%=cust_id%>')"><%=cust_name%></td>
						<td style=" color:#000000;" align="left"><%=phone%></td>
						<td style=" color:#000000;" align="left"><%=website%></td>
						<td style=" color:#000000;" align="left"><%=cust_addr%></td>
					</tr>
					<%}
				}%>
		</table>
	</body>
</html>

⌨️ 快捷键说明

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