📄 relay.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" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!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=UTF-8">
<link href="<%=request.getContextPath() %>/html/css/style.css" rel="stylesheet" type="text/css">
<script src="<%=request.getContextPath() %>/html/script/common.js"></script>
<script type="text/javascript">
function doMeasure(obj){
document.forms['pageForm'].action="<%=request.getContextPath()%>/lost.do?method=doMeasure&lid="+obj;
document.forms['pageForm'].submit();
}
function toConfirm(obj){
document.forms['pageForm'].action="<%=request.getContextPath()%>/lost.do?method=toConfirm&lid="+obj;
document.forms['pageForm'].submit();
}
</script>
</head>
<body>
<div class="page_title">客户流失管理 > 暂缓流失</div>
<div class="button_bar">
<button class="common_button" onclick="help('');">帮助</button>
<button class="common_button" onclick="back();">返回</button>
<button class="common_button" onclick="toConfirm('${lost.lostId }');"">确认流失</button>
<button class="common_button" onclick="doMeasure('${lost.lostId }');">保存</button>
</div>
<html:form action="/lost" method="post" styleId="pageForm">
<table class="query_form_table">
<tr>
<th>编号</th>
<td>${lost.lostId}</td>
<th>客户</th>
<td>${lost.customers.customersName}</td>
</tr>
<tr>
<th>客户经理</th>
<td>
${lost.customers.customersManager.linkManName}</td>
<th>上次下单时间</th>
<td>
${lost.lostLastOrderDatetime}</td>
</tr>
<tr>
<th>暂缓措施</th>
<td colspan="3">
<c:forEach items="${measure}" var="measure">
${measure.measureMethod }<br/>
</c:forEach>
</td>
</tr>
<tr>
<th>追加暂缓措施</th>
<td colspan="3">
<html:textarea rows="6" cols="50" property="measure.measureMethod"></html:textarea><span class="red_star">*</span></td>
</tr>
</table></html:form>
<br />
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -