📄 showmyallbargainclientinfo.jsp
字号:
<%@ page language="java" pageEncoding="utf-8"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
<html:base />
<title>成功客户信息表</title>
<style type="text/css">
<!--
body,td,th {
font-size: 12px;
}
body {
margin-left: 6px;
margin-top: 5px;
margin-right: 0px;
margin-bottom: 0px;
}
a:link {
color: #000000;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #000000;
}
a:hover {
text-decoration: underline;
color: #333333;
}
a:active {
text-decoration: none;
color: #333333;
}
-->
</style>
<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">
-->
<script src="/oa/js/crm.js" language="JavaScript"></script>
<script type="text/javascript">
function isNumberString (InString,RefString)
{
for (Count=0; Count < InString.length; Count++)
{
TempChar= InString.substring (Count, Count+1);
if (RefString.indexOf (TempChar, 0)==-1)
return (false);
}
return (true);
}
function showClientInfo()
{
var page1 = document.getElementById("appointPage").value;
if(isNumberString(page1,"0123456789"))
{
window.location="/oa/showMyAllBargainClientInfo.do?appointPage=" + page1;
}else
{
alert("请输入数字!");
document.getElementById("appointPage").value = ""
}
}
</script>
</head>
<body>
<table width="729" border="0" cellpadding="0" cellspacing="1">
<tr>
<td width="727" height="25">
以下显示的是我的成交客户信息列表
</td>
</tr>
</table>
<table width="730" border="0" cellpadding="0" cellspacing="1"
bgcolor="#3868F8" id="cc">
<tr>
<td width="83" height="22" bgcolor="#A4B5E3" onclick="mySort(0,'cc')" style="cursor: hand;">
<div align="center">
客户编号
</div>
</td>
<td width="241" bgcolor="#A4B5E3">
<div align="center">
客户名称
</div>
</td>
<td width="61" bgcolor="#A4B5E3">
<div align="center">
合同编号
</div>
</td>
<td width="64" bgcolor="#A4B5E3" onclick="mySort(3,'cc')" style="cursor:hand;">
<div align="center">
成交金额
</div>
</td>
<td width="60" bgcolor="#A4B5E3">
<div align="center">
成交人
</div>
</td>
<td width="56" bgcolor="#A4B5E3">
<div align="center">
合同期限
</div>
</td>
<td width="53" bgcolor="#A4B5E3">
<div align="center">
审核状态
</div>
</td>
</tr>
<logic:notEmpty name="bargainClientInfoList">
<logic:iterate id="bargainClientInfo" name="bargainClientInfoList">
<tr>
<td height="20" bgcolor="#FFFFFF">
<div align="center">
<bean:write name="bargainClientInfo" property="clientId" />
</div>
</td>
<td bgcolor="#FFFFFF">
<div align="center">
<bean:write name="bargainClientInfo" property="clientName" />
</div>
</td>
<td bgcolor="#FFFFFF">
<div align="center">
<bean:write name="bargainClientInfo" property="pactId" />
</div>
</td>
<td bgcolor="#FFFFFF">
<div align="center">
<bean:write name="bargainClientInfo" property="bargainMoney" />
</div>
</td>
<td bgcolor="#FFFFFF">
<div align="center">
<bean:write name="bargainClientInfo" property="bargainMan" />
</div>
</td>
<td bgcolor="#FFFFFF">
<div align="center">
<bean:write name="bargainClientInfo" property="pactTime" />
</div>
</td>
<td bgcolor="#FFFFFF">
<div align="center">
<bean:write name="bargainClientInfo" property="examineState" />
</div>
</td>
</tr>
</logic:iterate>
</logic:notEmpty>
</table>
<table width="711" border="0" cellpadding="0" cellspacing="1">
<tr>
<td width="709" height="25">
<div align="right">
<html:link page="/showMyAllBargainClientInfo.do"
paramId="currentPage" paramName="pageBean"
paramProperty="firstPage">首页</html:link>
<html:link page="/showMyAllBargainClientInfo.do"
paramId="currentPage" paramName="pageBean"
paramProperty="lastPage">尾页</html:link>
<html:link page="/showMyAllBargainClientInfo.do"
paramId="currentPage" paramName="pageBean"
paramProperty="downPage">下一页</html:link>
<html:link page="/showMyAllBargainClientInfo.do"
paramId="currentPage" paramName="pageBean" paramProperty="upPage">上一页</html:link>
当前为第
<font color="red"> <bean:write name="pageBean"
property="currentPage" /> </font>页 总共
<font color="red"> <bean:write name="pageBean"
property="totalRecoder" /> </font>条记录 总页面数
<font color="red"> <bean:write name="pageBean"
property="totalPages" /> </font>页 跳转至
<input type="text" id="appointPage" size="2">
页
<input type="button" value="GO"
onclick="return showClientInfo(); ">
</div>
</td>
</tr>
</table>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -