📄 dispatch.jsp
字号:
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ page import="crm.entity.sal.*" %>
<jsp:directive.page import="crm.entity.sys.UserEntity"/>
<%
String path = request.getContextPath();
ChanceEntity en=(ChanceEntity)request.getAttribute("dis");
List userlist=(List)request.getAttribute("userlist");
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>My JSP 'dispatch.jsp' starting page</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
<script src="script/common.js"></script>
</head>
<body>
<form action="chance.do" method="post">
<div class="page_title"><销售机会管理 > 指派销售机会</div>
<div class="button_bar">
<button class="common_button" onclick="help('');">帮助</button>
<button class="common_button" onclick="history.go(-1);">返回</button>
<button class="common_button" onclick="document.forms[0].submit();">保存</button>
</div>
<input type="hidden" name="cid" value=<%=en.getChcId() %> />
<table class="query_form_table">
<input type="hidden" name="flag" value="dispatch"/>
<tr>
<th>编号</th>
<td><%=en.getChcId() %></td>
<th>机会来源</th>
<td><%=en.getChcSource() %></td>
</tr>
<tr>
<th>客户名称</th>
<td><%=en.getChcCustName() %></td>
<th>成功机率(%)</th>
<td> <%=en.getChcRate() %></td>
</tr>
<tr>
<th>概要</th>
<td colspan="3"><%=en.getChcTitle() %></td>
</tr>
<tr>
<th>联系人</th>
<td><%=en.getChcLinkman() %></td>
<th>联系人电话</th>
<td><%=en.getChcTel() %></td>
</tr>
<tr>
<th>机会描述</th>
<td colspan="3"><%=en.getChcDesc() %></td>
</tr>
<tr>
<th>创建人</th>
<td><%=en.getChcCreateBy() %></td>
<th>创建时间</th>
<td><%=en.getChcCreateDate() %></td>
</tr>
</table>
<br />
<table class="query_form_table" id="table1">
<tr>
<th>指派给</th>
<td>
<select name="dddd" >
<option>请选择...</option>
<%
for(int i=0;i<userlist.size();i++)
{
UserEntity useren=(UserEntity)userlist.get(i);
%>
<option value="<%=useren.getUsrId() %>" ><%=useren.getUsrName() %></option>
<% }
%>
</select> <span class="red_star">*</span></td>
<th>指派时间</th>
<td>
<input id="t2" name="T20" value="${requestScope.date}" readonly size="20" /><span class="red_star">*</span></td>
</tr>
</table>
</form>
<script>
setCurTime('t2');
</script>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -