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

📄 lost.jsp

📁 一套自己原先在学校作的CRM,大家指点下
💻 JSP
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>jb-aptech毕业设计项目</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="html/css/style.css" rel="stylesheet" type="text/css">
<script src="html/script/common.js"></script>
</head>
<body>
<form action="lost.do?operate=doFind" method="post">
<div class="page_title">客户流失分析</div>
<div class="button_bar">
	<button class="common_button" onclick="help('');">帮助</button>
	<input type="submit" class="common_button" value="查询"> 
	</div>
	<table class="query_form_table" border="0" cellPadding="3" cellSpacing="0">
			<tr>
					<th>客户名称</th>
	<td><input type="text" name="csi.client.clientName"></td>
					<th>客户经理</th>

	<td><input type="text" name="csi.client.clientEmployeeName"></td>
					
			</tr>
		</table><br />
<table class="data_list_table">
	<tr>
		<th height="28">编号</th>
		<th height="28">年份</th>
		<th height="28">客户</th>
		<th height="28">客户经理</th>
		<th height="28">流失原因</th>
	</tr>
	<c:forEach items="${lostList}" var="csi" varStatus="i"> 
	<tr>
		<td class="list_data_number" height="27">${i.count }</td>
		<td class="list_data_text" height="27">${csi.csiTime }</td>
		<td class="list_data_text" height="27">${csi.client.clientName }</td>
		<td class="list_data_text" height="27">${csi.client.clientEmployeeName }</td>
		<td class="list_data_ltext" height="27">${csi.csiCause}</td>
	</tr></c:forEach>
	<tr>
		<th colspan="7" class="pager">
<div class="pager">
		<input type="hidden" name="p" value="${page }">
		共${count}条记录 每页<input value="${pageSize}" size="2" name="pageSize" readonly="readonly" />条
		第<input value="${pageNo}" size="2" name="pageNo" readonly="readonly"/>页/共${page}页
		<c:if test="${pageNo==1}">
			<a href="#" onclick="javascript:alert('已经是第一页了!')">第一页</a>
		</c:if>
		<c:if test="${pageNo!=1}">
			<a href="lost.do?operate=doPage&pageNo=1">第一页</a>
			<a href="lost.do?operate=doPage&pageNo=${pageNo-1}">上一页</a>
		</c:if>
		<c:if test="${pageNo!=page}">
			<a href="lost.do?operate=doPage&pageNo=${pageNo+1}">下一页</a>
		</c:if>	
		<a href="lost.do?operate=doPage&pageNo=${page}">最后一页</a>
		转到第<input value="1" size="4" name="toPageNo"/>页
		<a onclick="return check();" href="javascript:page('lost');">GO</a>
	</div>
		</th>
	</tr>
	</table></form>
</body>
</html>

⌨️ 快捷键说明

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