📄 seeplan.jsp
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%
String path = request.getContextPath();
%>
<%@ include file="/include.inc"%>
<html>
<head>
<title>查看计划</title>
<script type="text/javascript" src="<%=path%>/js/salchancecommon.js"></script>
<script type="text/javascript" src="<%=path%>/js/salchancevalidate.js"></script>
<link rel="stylesheet" href="<%=path%>/css/styles.css" type="text/css"></link>
</head>
<script type="text/javascript">
function helpbtn(){
alert("欢迎使用");
}
</script>
<body>
<div class="page_title">
客户开发计划 > 查看
</div>
<div class="button_bar">
<button class="common_button" onclick="helpbtn();">
帮助
</button>
<button class="common_button" onclick="javascript:history.go(-1);">
返回
</button>
</div>
<table class="query_form_table">
<tr>
<th>
编号
</th>
<td>
${requestScope.salChance.chcId}
</td>
<th>
机会来源
</th>
<td>
${requestScope.salChance.chcSource}
</td>
</tr>
<tr>
<th>
客户名称
</th>
<td>
${requestScope.salChance.chcCustName}
</td>
<th>
成功机率(%)
</th>
<td>
${requestScope.salChance.chcRate}
</td>
</tr>
<tr>
<th>
概要
</th>
<td>
${requestScope.salChance.chcTitle}
</td>
<th>
状态
</th>
<!-- 在这里做判断 -->
<c:choose>
<c:when test="${requestScope.salChance.chcStatus eq 3 }">
<td style="color: red;">
开发成功
</td>
</c:when>
<c:when test="${requestScope.salChance.chcStatus eq 4 }">
<td style="color: red;">
开发失败
</td>
</c:when>
<c:otherwise>
<td style="color: red;">
开发中...
</td>
</c:otherwise>
</c:choose>
</tr>
<tr>
<th>
联系人
</th>
<td>
${requestScope.salChance.chcLinkman}
</td>
<th>
联系人电话
</th>
<td>
${requestScope.salChance.chcTel}
</td>
</tr>
<tr>
<th>
机会描述
</th>
<td colspan="3">
${requestScope.salChance.chcDesc}
</td>
</tr>
<tr>
<th>
创建人
</th>
<td>
${requestScope.salChance.chcCreateBy}
</td>
<th>
创建时间
</th>
<td>
${requestScope.salChance.chcCreateDate}
</td>
</tr>
<tr>
<th>
指派给
</th>
<td>
${requestScope.salChance.chcDueTo}
</td>
<th>
指派时间
</th>
<td>
${requestScope.salChance.chcDueDate}
</td>
</tr>
</table>
<br />
<table class="data_list_table" id="table1">
<tr>
<th>
日期
</th>
<th>
计划
</th>
<th>
执行效果
</th>
</tr>
<c:forEach items="${requestScope.salChance.salPlans }" var="plan">
<tr>
<td class="list_data_text">
${plan.plaDate}
</td>
<td class="list_data_ltext">
${plan.plaTodo}
</td>
<td class="list_data_ltext">
${plan.plaResult}
</td>
</tr>
</c:forEach>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -