📄 call_index.jsp
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%
String path = request.getContextPath();
%>
<html>
<head>
<title>回访记录</title>
<link href="<%=path%>/css/style_2.css" rel="stylesheet">
</head>
<body background="../images/3.bmp">
<table width="100%" height="25" border="1" cellpadding="0"
cellspacing="0" bordercolor="#FFFFFF" bordercolorlight="#FFFFFF"
bordercolordark="#F9FFF4">
<tr>
<td>
<img src="../images/Manual14.gif" width="16" height="16">
客户管理 >>
<img src="../images/Manual54.gif" width="16" height="16">
<a href="<%=path %>/customermanage/Call_Index_Add.jsp" target="mainName">添加回访记录 </a>
<hr color="#006699" size="1">
<img src="../images/icon_group.gif" width="15" height="15">
<a href="<%=path%>/customermanage/Client_Index_Sql.jsp">客户信息</a>
<img src="../images/Manual54.gif" width="16" height="16">
<a href="<%=path%>/servlet/SelectStcokaddServlet">采购记录</a>
<img src="../images/Manual65.gif" width="16" height="16">
<a href="<%=path%>/customermanage/Follow_Index.jsp">跟进记录</a>
<img src="../images/Manual1.gif" width="16" height="16">
<a href="Call_Index.jsp">回访记录</a>
<img src="../images/Manual11.gif" width="16" height="16">
<a href="<%=path%>/servlet/SelectNeedServlet">需求表</a>
<img src="../images/icon_go_left.gif" width="15" height="15">
<a href="<%=path%>/customermanage/customermanage.jsp">返回</a>
<hr color="#cccccc" size="1">
</td>
</tr>
</table>
<table width="100%" height="74" border="1" cellpadding="0"
cellspacing="0" bordercolor="#FFFFFF" bordercolordark="#EEF2F9"
bordercolorlight="#FFFFFF">
<tr align="center" bgcolor="#EEF2F9">
<td width="20%" height="24">
回访日期
</td>
<td width="26%">
回访内容
</td>
<td width="25%">
回访结果
</td>
<td width="25%">
问题备注
</td>
<td width="13%">
操作
</td>
</tr>
<c:forEach items="${Calllist}" var="bean">
<tr align="center">
<td height="24">
${bean.callDate }
</td>
<td height="24">
${bean.callConent }
</td>
<td height="24">
${bean.callResult }
</td>
<td height="24">
${bean.problemResult }
</td>
<td height="24">
<a href="<%=path %>/servlet/DeleteCallServlet?callid=${bean.id }"><img
src="../images/ico/a_delete.gif" width="52" height="16"
border="0">
</a>
</td>
</tr>
</c:forEach>
<tr align="center" bgcolor="#EFF3FF">
<td height="26" colspan="5">
当前显示第【
<font color="#FF0000">${Callnum }</font>】页 每页【
<font color="#FF0000">5</font>】条记录
【共<font color='red'>${calltotalpage }</font>页】
【共<font color='red'>${callrows }</font>条记录】
<c:choose>
<c:when test="${Callnum <= 1}">
<img src="../images/1-prev.gif" width="36" height="11" border="0">
</c:when>
<c:otherwise>
<a href="<%=path%>/servlet/SelectCallServlet?topage=${Callnum-1 }">
<img src="../images/1-prev.gif" width="36" height="11" border="0">
</a>
</c:otherwise>
</c:choose>
<c:choose>
<c:when test="${Callnum >= calltotalpage}">
<img src="../images/1-next.gif" width="36" height="11" border="0">
</c:when>
<c:otherwise>
<a href="<%=path%>/servlet/SelectCallServlet?topage=${Callnum+1 }">
<img src="../images/1-next.gif" width="36" height="11" border="0">
</a>
</c:otherwise>
</c:choose>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -