📄 devdetail.jsp
字号:
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<jsp:directive.page import="crm.entity.sal.ChanceEntity"/>
<jsp:directive.page import="crm.entity.sal.PlanEntity"/>
<%
String path = request.getContextPath();
ChanceEntity cen=(ChanceEntity)request.getAttribute("en");
List plist=(List)request.getAttribute("plist");
%>
<html>
<head>
<title>My JSP 'devdetail.jsp' starting page</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
<script src="script/common.js"></script>
</head>
<body>
<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>
</div>
<table class="query_form_table">
<tr>
<th>编号</th>
<td><%=cen.getChcId() %></td>
<th>机会来源</th>
<td><%=cen.getChcSource() %>
</td>
</tr>
<tr>
<th>客户名称</th>
<td><%=cen.getChcCustName() %></td>
<th>成功机率(%)</th>
<td><%=cen.getChcRate() %></td>
</tr>
<tr>
<th>概要</th>
<td><%=cen.getChcTitle() %></td>
<th>状态</th>
<td style="color:red;"><%=cen.getChcStatus() %></td>
</tr>
<tr>
<th>联系人</th>
<td><%=cen.getChcLinkman() %></td>
<th>联系人电话</th>
<td><%=cen.getChcTel() %></td>
</tr>
<tr>
<th>机会描述</th>
<td colspan="3"><%=cen.getChcDesc() %></td>
</tr>
<tr>
<th>创建人</th>
<td><%=cen.getChcCreateBy() %></td>
<th>创建时间</th>
<td><%=cen.getChcCreateDate() %></td>
</tr>
<tr>
<th>指派给</th>
<td>
<%=cen.getChcDueTo() %></td>
<th>指派时间</th>
<td>
<%=cen.getChcDueDate() %></td>
</tr>
</table>
<br />
<table class="data_list_table" id="table1">
<%
for(int i=0;i<plist.size();i++)
{
PlanEntity pen=(PlanEntity)plist.get(i);
%>
<tr>
<th>日期</th>
<th>计划</th>
<th>执行效果</th>
</tr>
<tr>
<td class="list_data_text"><%=pen.getPlaDate() %></td>
<td class="list_data_ltext"><%=pen.getPlaTodo() %></td>
<td class="list_data_ltext"><%=pen.getPlaResult() %>
</td>
</tr>
<%} %>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -