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

📄 activities_edit.jsp

📁 主要实现管理客户以及客户信息和其公司的服务管理
💻 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>
<head>
<title>jb-aptech毕业设计项目</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="<%=request.getContextPath() %>/html/css/style.css" rel="stylesheet" type="text/css">
<script src="<%=request.getContextPath() %>/html/script/common.js"></script>
<script src="<%=request.getContextPath() %>/html/script/validate.js"></script>
<script type="text/javascript">
  function saveintercourseinfo(obj,obj1)
  {
  
  		 document.forms['editinfo'].action="<%=request.getContextPath() %>/intercourseInfo.do?operate=updateinfo&updateid="+obj+"&cid="+obj1;
	  	document.forms['editinfo'].submit();
        
  }
</script>
</head>
<body>

<div class="page_title">客户信息管理 &gt; 客户信息 &gt; 交往记录 &gt; 编辑交往记录</div>
<div class="button_bar">
	<button class="common_button" onclick="help('');">帮助</button>
	<button class="common_button" onclick="back();">返回</button>
	<button class="common_button" onclick="saveintercourseinfo('${info.intercourseId }','${cids }');">保存</button>  
</div>
<html:form action="/intercourseInfo?operate=editInfo" styleId="editinfo">
<table class="query_form_table" id="table1">
	<tr>
	    
		<th>时间</th>
		<td><html:text property="item.intercourseDatatime" value="${info.intercourseDatatime }"></html:text><span class="red_star">*</span></td>
		<th>地点</th>
		<td>
			<html:text property="item.intercourseAddress" value="${info.intercourseAddress }"></html:text><span class="red_star">*</span></td>
	</tr>
	<tr>
		<th>概要</th>
		<td><html:text property="item.intercourseSummary" value="${info.intercourseSummary }"></html:text><span class="red_star">*</span></td>
		<th>备注</th>
		<td><html:text property="item.intercourseRemark" value="${info.intercourseRemark }"></html:text></td>
	</tr>	
	<tr>
		<th>详细信息</th>
		<td colspan="3">
			<html:textarea property="item.intercourseInfo" value="${info.intercourseInfo}"></html:textarea>
		</td>
	</tr>
	

</table>
</html:form>

</body>
</html>

⌨️ 快捷键说明

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