📄 plan_detail.jsp
字号:
<%@ page language="java" pageEncoding="GBK" %>
<%@ 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="/WEB-INF/jb-common.tld" prefix="jb" %>
<script src="validate.js" ></script>
<script src="icommon.js" ></script>
<html:errors/>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
<title>查看计划</title>
<link rel="stylesheet" type="text/css" href="styles.css" >
<script>
function doDel(id){
if ( window.confirm("确定删除?") ){
window.location.href = "?o=doDel&id=${planForm.chance.chcId }&pid=" + id;
}
}
</script>
</head>
<body class="main">
<html:form action="plan" method="post">
<html:hidden property="o" value="toMake" />
<input type="hidden" name="id" value="${planForm.chance.chcId }" />
<span class="page_title">查看计划</span>
<div class="button_bar">
<button class="common_button" onclick="javascript:window.location.href='plan.do?o=toList'">返回</button>
</div>
<table class="query_form_table" border="0" cellPadding="3" cellSpacing="0">
<tr>
<th>编号</th>
<td>${planForm.chance.chcId } </td>
<th>机会来源</th>
<td>${planForm.chance.chcSource } </td>
</tr>
<tr>
<th>客户名称</th>
<td>${planForm.chance.chcCustName } </td>
<th>成功机率(%)</th>
<td>${planForm.chance.chcRate } </td>
</tr>
<tr><th>概要</th>
<td colspan="3">${planForm.chance.chcTitle } </td>
</tr>
<tr><th>联系人</th>
<td>${planForm.chance.chcLinkman } </td>
<th>联系人电话</th>
<td>${planForm.chance.chcTel } </td>
</tr>
<tr>
<th>机会描述</th>
<td colspan="3">${planForm.chance.chcDesc } </td>
</tr>
<tr>
<th>创建人</th>
<td>
${planForm.chance.chcCreateBy }
</td>
<th>创建时间</th>
<td><bean:write name="planForm" property="chance.chcCreateDate" format="yyyy年MM月dd日" /> </td>
</tr>
<tr> <th>指派给</th>
<td>${planForm.chance.chcDueTo } </td>
<th>指派时间</th>
<td><bean:write name="planForm" property="chance.chcDueDate" format="yyyy年MM月dd日" /> </td>
</tr>
</table>
<br />
<html:hidden property="item.salChance.chcId" value="${planForm.chance.chcId }" />
<html:hidden property="item.plaId" />
<html:hidden property="item.plaResult" />
<table class="data_list_table" border="0" cellPadding="3" cellSpacing="0">
<tr>
<th width="200px">日期</th>
<th>计划</th>
<th>执行效果</th>
</tr>
<logic:iterate id="item" name="planForm" property="chance.salPlans"
type="org.jb.y272.team0.entity.SalPlan">
<tr>
<td class="list_data_text"><bean:write name="item" property="plaDate" format="yyyy年MM月dd日" /> </td>
<td class="list_data_ltext">${item.plaTodo } </td>
<td>${item.plaResult } </td>
</tr>
</logic:iterate>
<logic:empty name="planForm" property="chance.salPlans">
<tr><td class="data_cell" colspan="20" style="text-align:center;height:40px;">没有记录</td></tr>
</logic:empty>
</table>
</html:form>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -