📄 confirm.jsp
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<!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() %>/css/style.css" rel="stylesheet" type="text/css">
<script src="<%=request.getContextPath() %>/script/common.js"></script>
<script type="text/javascript">
function move()
{
document.forms[0].action = "/CrmPrj/lost.do?op=ModifyConfirm";
document.forms[0].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="to('lost.do?op=GetLostById&lostId=${lost.lstId}&status=0');">暂缓流失</button>
<button class="common_button" onclick="javascript:move()">保存</button>
</div>
<html:form action="lost">
<table class="query_form_table">
<input name="lostId" value="${lost.lstId}" type="hidden"/>
<tr>
<th>编号</th>
<td>${lost.lstId }</td>
<th>客户</th>
<td>${lost.lstCustName }</td>
</tr>
<tr>
<th>客户经理</th>
<td>
${lost.lstCustManagerName }</td>
<th>上次下单时间</th>
<td>
${lost.lstLastOrderDate2 }</td>
</tr>
<tr>
<th>暂缓措施</th>
<td colspan="3">
${lost.lstDelay }
</td>
</tr>
<tr>
<th>流失原因</th>
<td colspan="3">
<textarea rows="6" cols="50" name="confirm">${lost.lstReason }</textarea><span class="red_star">*</span></td>
</tr>
</table>
</html:form>
<br />
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -