📄 add.jsp
字号:
<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
<html>
<head>
<title>jb-aptech毕业设计项目</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="css/style.css" rel="stylesheet" type="text/css">
<script src="script/common.js"></script>
<script type="text/javascript">
function doSubmit()
{
document.forms[0].submit();
alert('创建销售机会成功!');
}
</script>
</head>
<body>
<form action="salChance.do?operate=doAdd" method="post">
<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="doSubmit();">
保存
</button>
</div>
<table class="query_form_table">
<tr>
<input type="hidden"/>
<th>
编号
</th>
<td>
<input readonly value="" style="background-color: #ccc" />
</td>
<th>
机会来源
</th>
<td>
<input name="salChance.chcSource" size="20" />
</td>
</tr>
<tr>
<th>
客户名称
</th>
<td>
<input name="salChance.chcCustName" />
<span class="red_star">*</span>
</td>
<th>
成功机率
</th>
<td>
<input name="salChance.chcRate" />
<span class="red_star">*</span>
</td>
</tr>
<tr>
<th>
概要
</th>
<td colspan="3">
<input name="salChance.chcTitle" size="52" />
<span class="red_star">*</span>
</td>
</tr>
<tr>
<th>
联系人
</th>
<td>
<input name="salChance.chcLinkman" size="20" />
</td>
<th>
联系人电话
</th>
<td>
<input name="salChance.chcTel" size="20" />
</td>
</tr>
<tr>
<th>
机会描述
</th>
<td colspan="3">
<textarea rows="6" cols="50" name="salChance.chcDesc"></textarea>
<span class="red_star">*</span>
</td>
</tr>
<tr>
<th>
创建人
</th>
<td>
<input type="hidden" name="salChance.chcCreateId" value="${USER.usrId}">
<input name="salChance.chcCreateBy" value="${USER.usrName}"
readonly size="20" />
<span class="red_star">*</span>
</td>
<th>
创建时间
</th>
<td>
<input id="t1" name="salChance.chcCreateDate" readonly size="20" />
<span class="red_star">*</span>
</td>
</tr>
</table>
</form>
<br />
<table disabled class="query_form_table" id="table1">
<tr>
<th>
指派给
</th>
<td>
<select name="salChance.chcDueTo">
<option>
请选择...
</option>
<option>
小明
</option>
<option>
旺财
</option>
<option>
球球
</option>
<option>
孙小美
</option>
<option>
周洁轮
</option>
</select>
<span class="red_star">*</span>
</td>
<th>
指派时间
</th>
<td>
<input id="t2" name="salChance.chcDueDate" readonly size="20" />
<span class="red_star">*</span>
</td>
</tr>
</table>
<script>
setCurTime('t1');
setCurTime('t2');
</script>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -