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

📄 showdetail.jsp

📁 自己制作的联通CRM,支持客户分类,管理,升级,积分管理等等..
💻 JSP
字号:
<%@ page contentType="text/html; charset=GBK" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
<meta http-equiv="expires" content="Wed, 26 Feb 1970 08:21:57 GMT" />
<link href="${pageContext.request.contextPath}/image/main.css" rel="stylesheet" type="text/css">
<title>添加潜在客户</title>
<script language="javascript" src="${pageContext.request.contextPath}/image/CheckGroupForm.js">
</script>

<script language="javascript">
			var xmlHttpArea;
		function createXMLHttpRequestArea(){
			if(window.ActiveXObject){
				xmlHttpArea = new ActiveXObject("Microsoft.XMLHTTP");
			}
			else if(window.XMLHttpRequest){
				xmlHttpArea = new XMLHttpRequest();
			}
			return xmlHttpArea;
		}
		function chProvince(id)
		{
			xmlHttpArea=createXMLHttpRequestArea();
			var url="${pageContext.request.contextPath}/latencyGroup.do?task=sendajax";
			url=url+"&nid="+id+"&date="+new Date();
			xmlHttpArea.open("GET",url,true);
			xmlHttpArea.onreadystatechange = cityback;
			xmlHttpArea.send();
		}
		function cityback()
		{
			if(xmlHttpArea.readystate == 4){
				var result = xmlHttpArea.responseXML;
				var citys = result.getElementsByTagName("city");
				
				var areas=document.getElementById("area");
				areas.length =0;
	
				if(citys.length==0){
				
					var option = new Option("未选择","0");
					areas.add(option);
				}
				if(citys.length>0){
				
					var option = new Option("未选择","0");
					areas.add(option);
					for(i=0;i<citys.length;i++){
						var city = citys[i];
						var nid = city.childNodes[0].firstChild.nodeValue;
						var sname = city.childNodes[1].firstChild.nodeValue;
						var option = new Option(sname,nid);
						areas.add(option);
					}
				}
			
			}
		}
		
		function checkName()
		{
			
			xmlHttpArea=createXMLHttpRequestArea();	
			var name=document.getElementById("companyname").value;
			var url="${pageContext.request.contextPath}/latencyGroup.do?task=checkName";
			url=url+"&name="+name+"&date="+new Date();
			xmlHttpArea.open("GET",url,true);
			xmlHttpArea.onreadystatechange = nameback;
			xmlHttpArea.send();
		}
		function nameback()
		{
			if (xmlHttpArea.readyState == 4){
				if (xmlHttpArea.status == 200){
					toResult();
				}
			}
		}
		function toResult()
		{
			var message = xmlHttpArea.responseText;
			document.getElementById("msg").innerHTML =message;

		}
</script>



<style type="text/css">
<!--
.STYLE2 {
	font-size: 16px;
	color: #0000FF;
}
-->
    </style>
</head>
<body>
<html:form action="/latencyGroup?task=addCustomer" styleId="form1">

<html:hidden property="nid" ></html:hidden>

<table width="100%" border="1" cellpadding="0" cellspacing="0" bordercolor="#D71920">

  <tr>
    <td height="115" align="center" valign="middle"><table width="100%" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td height="10" colspan="3">&nbsp;</td>
      </tr>
      <tr>
        <td width="4%">&nbsp;</td>
        <td width="92%"><table width="100%" height="237" border="1" cellpadding="0" cellspacing="0">
          <tr>
            <td width="17%" height="28">集团名称:</td>
            <td colspan="3">
            <html:text property="companyname" readonly="true"></html:text>
			</td>
            </tr>
   
          <tr>
            <td height="27">集团级别:</td>
            <td height="27" colspan="3">
            <html:text property="companylevel" readonly="true"></html:text>
			</td>
          </tr>
          <tr>
            <td height="30">行业类别:</td>
            <td height="30" colspan="3">
            <html:text property="callingtype" readonly="true"></html:text>
			</td>
          </tr>
          <tr>
            <td height="30">企业地址:</td>
            <td height="30" colspan="3">
            <html:text property="address" readonly="true"></html:text>	
			</td>
          </tr>
          <tr>
            <td height="30">上月收入:</td>
            <td width="31%" height="30">
            <html:text property="ultimoearning" readonly="true"></html:text>			
			</td>
		</tr>
		<tr>
            <td width="19%" height="30">上月用户数:</td>
            <td width="33%">
            <html:text property="ultimouser" readonly="true"></html:text>			
			</td>
          </tr>
          <tr>
            <td height="30" align="left">企业法人:</td>
            <td height="30" colspan="3" align="left">
            <html:text property="deputy" readonly="true"></html:text>
			</td>
          </tr>
          <tr>
            <td height="30" colspan="4" align="right">
            <span class="STYLE2"><html:link action="/linkmanInfoManage?tag=enterPageInfo">联系人列表</html:link></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;            </td>
          </tr>
        </table>
          </td>
        <td width="4%">&nbsp;</td>
      </tr>
      <tr>
        <td height="10" colspan="3">&nbsp;</td>
      </tr>
    </table>
    </td>
  </tr>
</table>

</html:form>

</body>
</html>

⌨️ 快捷键说明

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