<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MyPlanAdd.aspx.cs" Inherits="CY.WebForm.Pages.work.MyPlanAdd" %>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
<head id="Head1" runat="server">
|
<title>任务下达</title>
|
<uc:CMSHead ID="CMSHead1" runat="server" />
|
</head>
|
<body>
|
<form id="form1" class="form2" runat="server">
|
<div>
|
<table class="tableStyle" style="margin: 10px auto;" cellpadding="0" cellspacing="0">
|
<tr>
|
<td class="ali03 w100px">
|
计划性质:
|
</td>
|
<td>
|
<select id="selPlanDataType" runat="server" keepdefaultstyle="true" style=" width:100px;">
|
<option value="1">客户拜访</option>
|
<option value="2">业务跟单</option>
|
<option value="3">行政工作</option>
|
<option value="4">其他计划</option>
|
</select>
|
</td>
|
<td class="ali03">
|
执行时间:
|
</td>
|
<td>
|
<input id="txtPlanRunTime" type="text" class="date" datefmt="yyyy-MM-dd HH:00:00" runat="server" style=" width:180px;"/>
|
</td>
|
</tr>
|
<tr>
|
<td class="ali03">
|
对口单位:
|
</td>
|
<td colspan="3">
|
<input id="txtPlanComplany" style=" width:400px;" type="text" class="req" runat="server" msg="请输入对口单位"/>
|
</td>
|
</tr>
|
<tr>
|
<td class="ali03">
|
计划主题:
|
</td>
|
<td colspan="3">
|
<input id="txtPlanTitle" type="text" style=" width:400px;" class="req" runat="server" msg="请输入计划主题" />
|
</td>
|
</tr>
|
<tr>
|
<td class="ali03">
|
详细内容:
|
</td>
|
<td colspan="3">
|
<textarea id="txtPlanContent" runat="server" style="width: 390px; height: 50px;" class="req" msg="请输入详细内容"></textarea>
|
</td>
|
</tr>
|
<tr>
|
<td colspan="4" style="text-align: center;">
|
<asp:Button ID="btn_submit" runat="server" OnClick="btn_submit_form" Text="提交" />
|
</td>
|
</tr>
|
</table>
|
</div>
|
</form>
|
</body>
|
</html>
|