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

📄 potentialform.jsp

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻 JSP
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ include file="/commons/taglibs.jsp" %>
<script language="javascript" src="js/calendar.js"></script>
<html>
  <head>

    
    <title>My JSP 'clientList.jsp' starting page</title>
    <%@ include file="/commons/meta.jsp" %>
	
  </head>
  
  <body class="bodycolor" topmargin="5" onload="document.form1.CUSTOMER_NAME.focus();">

<table class="title1">
  <tr>
    <td class="Big"><img src="${ctx }/images/notify_new.gif" align="absmiddle"><span class="big3">潜在客户资料编辑</span>
    </td>
  </tr>
</table>
<br>

<html:form action="potential.do" method="post">
<html:hidden property="p" value="save"/>
<html:hidden property="id"/>
<table     class="tablestyle1">
   
   <tr>
    <td nowrap  class="TableHeader" colspan="4" align="left">
     基本信息:
    </td>
   </tr>
   <tr>
    <td nowrap class="TableData" width="25%">潜在客户名称: </td>
    <td nowrap class="TableData" colspan="3">
         <html:text property="potentiaName"  size="20" maxlength="100"></html:text>
         <font color="red"><html:errors property="potentiaName" /></font>
    </td>
   </tr>
   <tr>
    <td nowrap class="TableData" width="25%">电话: </td>
    <td nowrap class="TableData" width="25%">
       <html:text property="telephone"  size="20" maxlength="100"></html:text>
       <font color="red"><html:errors property="telephone" /></font>
    </td>
     <td nowrap class="TableData" width="25%">传真: </td>
    <td nowrap class="TableData" width="25%">
        <html:text property="fax"  size="20" maxlength="100"></html:text>
    </td>
   </tr>
   <tr>
     <td nowrap class="TableData" width="25%">电子邮件: </td>
    <td nowrap class="TableData" colspan="3">
        <html:text property="email"  size="20" maxlength="100"></html:text>
        <font color="red"><html:errors property="email" /></font>
    </td>
   </tr>
   <tr>
    <td nowrap class="TableData" width="25%">邮政编码: </td>
    <td nowrap class="TableData" colspan="3">
   		 <html:text property="postCard"  size="20" maxlength="100"></html:text>
   		 <font color="red"><html:errors property="postCard" /></font>
    </td>
   </tr>

    <tr>
    <td nowrap class="TableData" width="25%">详细地址: </td>
    <td nowrap class="TableData" colspan="3">
    	 <html:textarea property="address" cols="57" rows="3" ></html:textarea>
    	 <font color="red"><html:errors property="address" /></font>
    </td>
   </tr>
  <tr>
    <td nowrap  class="TableHeader" colspan="4" align="left">
     客户类型:
    </td>
  </tr>

  <tr>
    <td nowrap class="TableData" width="25%">客户来源: </td>
    <td nowrap class="TableData" colspan="3" >
       <html:select property="origin">
	       	<html:option value="">---请选择---</html:option>
			<html:option value="报纸">报纸</html:option>
			<html:option value="网站">网站</html:option>
			<html:option value="广告">广告</html:option>
			<html:option value="其他">其他</html:option>
		</html:select>
		<font color="red"><html:errors property="origin" /></font>
    </td>

   </tr>
  <tr>
    <td nowrap class="TableData" width="25%">客户类别: </td>
    <td nowrap class="TableData"  colspan="3">
       	<html:select property="clientTypeId">
	       	<html:option value="">---请选择---</html:option>
			<html:options collection="clientTypes" property="id" labelProperty="name"/>
		</html:select>
		<font color="red"><html:errors property="clientTypeId" /></font>
	 </td>
  </tr>

<tr>
 <td nowrap  class="TableHeader" colspan="4" align="left">
     客户跟踪:
 </td>
</tr>
<tr>
    <td nowrap class="TableData" width="25%">客户潜在性: </td>
    <td nowrap class="TableData" colspan="3">
   		 <html:text property="probability"  size="20" maxlength="100"></html:text>
    </td>
   </tr>
<tr>
 <td nowrap class="TableData" width="25%">客户负责人: </td>
    <td nowrap class="TableData" colspan="3">
      	<html:select property="employeeId">
	       	<html:option value="">---请选择---</html:option>
			<html:options collection="employees" property="id" labelProperty="employeeName"/>
		</html:select>
		<font color="red"><html:errors property="employeeId" /></font>
    </td>
</tr>
<tr>
 <td nowrap class="TableData" width="25%">客户创建日期: </td>
    <td nowrap class="TableData" colspan="3">
      <html:text property="createDate"  readonly="true" size="20" maxlength="100"></html:text>
      <img src="${ctx }/images/calendar.gif" ondblClick="setday(createDate)">
      <font color="red"><html:errors property="createDate" /></font>
    </td>
</tr>
<tr>
</tr>

<tr>
 <td nowrap  class="TableHeader" colspan="4" align="left">
      备注:
 </td>
</tr>
<tr>
 <td nowrap class="TableData" width="25%">备注: </td>
    <td nowrap class="TableData" colspan="3">
         <html:textarea property="remark" cols="57" rows="3"  ></html:textarea>
    </td>
</tr>

<tr>
  <td class="TableData" colspan="4">
         </td>
</tr>
<tr>
    <td nowrap  class="TableControl" colspan="4" align="center">
        <html:submit styleClass="BigButton" title="添加潜在客户信息">确定</html:submit>&nbsp;
        <html:reset  styleClass="BigButton" title="重填">重填</html:reset>
    </td>
   </tr>
</table>
</html:form>
</body>
</html>

⌨️ 快捷键说明

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