username@email.com
2025-05-15 6fe02a16e55f17e45a3997171e1b2284d45af25b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="OA_WageAwardPunishAdd.aspx.cs" Inherits="CY.WebForm.Pages.wage.OA_WageAwardPunishAdd" %>
 
<!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>
    <%--<textarea id="txtExaminedRecore" runat="server" style="width: 370px; height: 50px;" class=""></textarea>--%>
    <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 colspan="3">
                     <input id="txtRegTimeStart" type="text" class="date w90px" datefmt="yyyy-MM-dd" runat="server" />
                </td>
            </tr>
            <tr>
                <td class="ali03 w100px">
                    所在部门:
                </td>
                <td class="w150px">
                    <asp:DropDownList runat="server" ID="selDepartmentId" AutoPostBack="true" keepDefaultStyle="true" OnSelectedIndexChanged="selDepartmentId_SelectedIndexChanged" Style="width: 100px;">
                    </asp:DropDownList>
                </td>
                <td class="ali03">
                    员工姓名:
                </td>
                <td>
                    <select id="selStaff" runat="server" keepdefaultstyle="true" style="width: 103px;">
                        <option value="">全部</option>
                    </select>
                </td>
            </tr>
            <tr>
                <td class="ali03 w100px">
                    主题:
                </td>
                <td colspan="3">
                    <input id="txtRecTitle" type="text" class="req" msg="请填写主题" runat="server" maxlength="25" style=" width:364px;" />
                </td>
            </tr>
            <tr>
                <td class="ali03 w100px">
                    类型:
                </td>
                <td>
                    <select keepdefaultstyle="true" runat="server" id="txtRecType" class="w100px">
                        <option value="1">奖励</option>
                        <option value="2">惩罚</option>
                    </select>
                </td>
                <td class="ali03 w100px">
                    金额:
                </td>
                <td>
                    <input id="txtRecMoney" type="text" class="w100px float req" min="0" msg="请填写大于0的金额数字" runat="server" />
                </td>
            </tr>
            <tr>
                <td class="ali03 w100px">
                    描述:
                </td>
                <td colspan="3">
                    <textarea id="txtRecContent" runat="server" style="width: 355px; height: 40px;" maxlength="100"></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>