<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WorkReminderEdit.aspx.cs" Inherits="CY.WebForm.Pages.personnel.WorkReminderEdit" %>
|
|
<!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>
|
<asp:DropDownList runat="server" ID="selDepartmentId" AutoPostBack="true" keepDefaultStyle="true" onselectedindexchanged="selDepartmentId_SelectedIndexChanged">
|
</asp:DropDownList></td>
|
</tr>
|
<tr>
|
<td class="ali03">提醒人:</td>
|
<td><select id="selStaff" runat="server" keepDefaultStyle="true"></select></td>
|
</tr>
|
<tr>
|
<td class="ali03">提醒事项:</td>
|
<td><textarea id="txtContent" runat="server" style=" width:400px; height:50px;" class="Sreq" msg="请输入提醒事项"></textarea></td>
|
</tr>
|
<tr id = "trIsFinish" runat="Server">
|
<td class = "ali03">
|
是否完成
|
</td>
|
<td>
|
<select keepDefaultStyle="true" name="selIsFinish" runat="server" id="selIsFinish">
|
<option value="0">未完成</option>
|
<option value="1" selected="selected">已完成</option>
|
</select>
|
</td>
|
</tr>
|
<tr id = "trFeedBack" runat="Server">
|
<td class="ali03">反馈意见:</td>
|
<td><textarea id="txtFeedBackContent" runat="server" style=" width:400px; height:50px;"></textarea></td>
|
</tr>
|
<tr>
|
<td colspan="2" style=" text-align:center;"><asp:Button ID="btn_submit" runat="server" OnClick="btn_submit_form" Text="提交" /></td>
|
</tr>
|
</table>
|
</div>
|
</form>
|
</body>
|
</html>
|