📄 attornfindclientinfo.jsp
字号:
<%@ page language="java" pageEncoding="gbk"%>
<%@ 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: 2px;
margin-top: 2px;
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">
-->
<style type="text/css">
<!--
.STYLE1 {
font-size: 14px;
font-weight: bold;
}
-->
</style>
<script src="/oa/js/crm.js" language="JavaScript"></script>
<script type="text/javascript">
function add(){
return function(){
var a = request.responseText;
if(a == 1)
{
alert("员工号不是市场部人员或不是有效员工号!");
var text1 = document.clientInfoForm.empId;
text1.focus();
text1.select();
}
}
}
function chuli(value1){
if(value1 != ""){
var url = "/oa/checkClientId.do?value1="+value1;
var obj = new Object();
obj.doMethod = add();
var b = new MyAjax(url,obj,'GET',"",true);
b.doAjax();
}
}
function check()
{
if(document.clientInfoForm.empId.value == "")
{
alert("请输入转让对象!");
document.clientInfoForm.empId.focus();
document.clientInfoForm.empId.select();
return false;
}
return true;
}
function attorn()
{
if(check())
{
document.clientInfoForm.submit();
}
}
</script>
</head>
<body>
<html:form action="/attornClientInfo">
<table width="373" border="0" cellpadding="0" cellspacing="1"
bgcolor="#3868F8">
<tr>
<td width="371" height="25" bgcolor="#A4B5E3">
<span class="STYLE1"> 客户转让</span>
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF" valign="top"
style="padding-bottom:5px; padding-top:8px; padding-left:5px; padding-right:5px;">
<table width="359" border="0" align="center" cellpadding="0"
cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td width="80" height="22" bgcolor="#FFFFFF">
<div align="center">
客户编号:
</div>
</td>
<td width="103" bgcolor="#FFFFFF">
<%--<bean:write name="clientInfo" property="clientId" />
--%><html:text property="clientId" name="clientInfo" readonly="true" size="11"></html:text>
</td>
<td width="80" bgcolor="#FFFFFF">
<div align="center">
客户名称:
</div>
</td>
<td width="91" bgcolor="#FFFFFF" >
<bean:write name="clientInfo" property="clientName" />
</td>
</tr>
<tr>
<td height="22" bgcolor="#FFFFFF">
<div align="center">
联 系 人:
</div>
</td>
<td height="22" bgcolor="#FFFFFF">
<bean:write name="clientInfo" property="linkman" />
</td>
<td height="22" bgcolor="#FFFFFF">
<div align="center">
创建时间:
</div>
</td>
<td height="22" bgcolor="#FFFFFF">
<bean:write name="clientInfo" property="createTime" />
</td>
</tr>
<tr>
<td height="22" bgcolor="#FFFFFF">
<div align="center">
客户级别:
</div>
</td>
<td height="22" bgcolor="#FFFFFF">
<bean:write name="clientInfo" property="clientState" />
</td>
<td height="22" bgcolor="#FFFFFF">
<div align="center">
客户状态:
</div>
</td>
<td height="22" bgcolor="#FFFFFF">
<bean:write name="clientInfo" property="serverMode" />
</td>
</tr>
<tr>
<td height="22" bgcolor="#FFFFFF">
<div align="center">
转让对象:
</div>
</td>
<td height="22" colspan="3" bgcolor="#FFFFFF">
<%--
<select name="select">
<option>
联合征信
</option>
</select>
--%>
<html:text property="empId" name="clientInfo" size="11" onblur="chuli(this.value);"></html:text>
</td>
</tr>
<tr>
<td height="35" colspan="4" bgcolor="#FFFFFF">
<div align="center">
<input type="button" value="提 交" onclick="attorn()" />
<%--<html:link page="/attornClientInfo.do" paramId="clientId"
paramName="clientInfo" paramProperty="clientId">提交 </html:link>
--%>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</html:form>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -