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

📄 serviceform.jsp

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻 JSP
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ include file="/commons/taglibs.jsp" %>
<script language="javascript" src="js/calendar.js"></script>
<html:html>
  <head>
    <title>${CompanyName }${ProjectName }</title>
    <%@ include file="/commons/meta.jsp" %>
  </head>
 <body class="bodycolor" topmargin="5" onload="document.form1.PROVIDER_NAME.focus();">
	<table class="title1">
	  <tr>
	    <td class="Big"><img src="${ctx }/images/edit.gif" WIDTH="16" HEIGHT="16" align="absmiddle"><span class="big3"> 售后服务编辑</span>
	    </td>
	  </tr>
	</table>
	<br>

	<table class="tablestyle1">
  <html:form action="service.do"  method="post">
  <html:hidden property="p" value="save"/>
  <html:hidden property="id" value="${serviceForm.id }"/>
	   <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="clientId" >
			<html:option value="">---请选择---</html:option>
			<html:options collection="clients" property="id" labelProperty="clientName"/>
		</html:select>
		<font color="red"><html:errors property="clientId"/></font>
	    </td>
	    </tr>
	    <tr>
	    <td nowrap class="TableData" width="25%">服务类型: 
	    <td nowrap class="TableData" width="25%">
          <html:select property="serviceTypeId">
			<html:option value="">---请选择---</html:option>
			<html:options collection="serviceTypes" property="id" labelProperty="name"/>
		</html:select>
		<font color="red"><html:errors property="serviceTypeId"/></font>
	    </td>
	    <td nowrap class="TableData" width="25%">负责人:
		 	  <td nowrap class="TableData" width="25%">
	          <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">开始时间: </td>
	   	   <td nowrap class="TableData">
	       <html:text property="beginTime" readonly="true" size="20" maxlength="100" />
			  <img src="images/calendar.gif"  ondblclick="setday(beginTime)"/>
			  <font color="red"><html:errors property="beginTime"/></font>
	   	   </td>
	   	   <td nowrap class="TableData">服务状态:
	       <td nowrap class="TableData"  >
          <html:select property="state">
			<html:option value="">---请选择---</html:option>
			<html:option value="0">未结束</html:option>
			<html:option value="1">已结束</html:option>
		</html:select>
		<font color="red"><html:errors property="state"/></font>
    	</td>
	    </tr>
	    <tr>
	  	     <td nowrap class="TableData">结束时间: </td>
	    <td nowrap class="TableData"  colspan="3">
	        <html:text property="endTime" readonly="true" size="20" maxlength="100" />
	         <img src="images/calendar.gif"  ondblclick="setday(endTime)"/>
	         <font color="red"><html:errors property="endTime"/></font>
	    </td>
	   </tr>
	    <tr>
	    <td nowrap  class="TableHeader" colspan="4" align="left">
	      售后服务服务信息:
	    </td>
	    </tr>
	    <tr>
	    <td nowrap class="TableData">故障现象: </td>
	    <td nowrap class="TableData" colspan="3">
	        <html:textarea  property="trouble" cols="57" rows="3" />
	        <font color="red"><html:errors property="trouble"/></font>
	    </td>
	    </tr>
	    <tr>
	    <td nowrap class="TableData">解决方案: </td>
	    <td nowrap class="TableData" colspan="3">
	        <html:textarea  property="solve" cols="57" rows="3"   />
	        <font color="red"><html:errors property="solve"/></font>
	    </td>
	    </tr>
	     <tr>
	    <td nowrap  class="TableHeader" colspan="4" align="left">
	      售后服务总结:
	    </td>
	    </tr>
	   <tr>
	    <td nowrap class="TableData">服务总结: </td>
	    <td nowrap class="TableData" colspan="3">
	        <html:textarea  property="remark" cols="57" rows="3"   />
	        <font color="red"><html:errors property="remark"/></font>
	    </td>
	    </tr>
	 	<tr>
		    <td nowrap  class="TableControl" colspan="4" align="center">
		    	<html:submit styleClass="BigButton" title="添加售后服务信息">确定</html:submit>
		    	<html:reset styleClass="BigButton" title="重填">重填</html:reset>
		    </td>
	   </tr>
  </html:form>
</table>
</body>
</html:html>

⌨️ 快捷键说明

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