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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CMSUpgradeList.aspx.cs" Inherits="CY.WebForm.Pages.membermanage.CMSUpgradeList" %>
 
<!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 runat="server">
    <title>会员升级记录</title>
    <uc:CMSHead ID="CMSHead1" runat="server" />
    <script type="text/javascript">
        ///添加
        function EditModel(Keyid) {
            top.Dialog.open({ URL: "/Pages/membermanage/CMSUpgradeEdit.aspx?Keyid=" + Keyid, Title: "审核申请", Width: 465, Height: 536 });
        }
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div id="scrollContent">
        <div class="box1">
            <table class=" ">
                <tr>
                    <td class="ali03">
                        会员名称:
                    </td>
                    <td>
                        <input type="text" runat="server" id="txtCompanyName" />
                        <asp:Button ID="btn_Register" Text="查询" runat="server" OnClick="btn_Search_Click" />
                    </td>
                </tr>
            </table>
        </div>
        <div>
            <asp:Repeater ID="RepClientList" runat="server">
                <HeaderTemplate>
                    <table class="tableStyle ali02">
                        <tr>
                            <th class="w40px">
                                编号
                            </th>
                            <th>
                                会员名称
                            </th>
                            <th>
                                原类型
                            </th>
                            <th>
                                申请类型
                            </th>
                            <th>
                                申请
                            </th>
                            <th>
                                申请信息
                            </th>
                            <th>
                                审核信息
                            </th>
                            <th>
                                批准信息
                            </th>
                            <th>
                                操作
                            </th>
                        </tr>
                </HeaderTemplate>
                <ItemTemplate>
                    <tr>
                        <td>
                            <%#Container.ItemIndex + 1+ this.UCPager1.PageSize * (this.UCPager1.PageIndex - 1)%>
                        </td>
                        <td>
                            <%#Eval("Name")%>
                        </td>
                        <td>
                            <%#Eval("OldMemberType")%>
                        </td>
                        <td>
                            <%#Eval("NewMemberType")%>
                        </td>
                        <td>
                            <span title="<%#Eval("Remark")%>">
                                <%#Eval("ApplicationStatusName")%>
                            </span>
                        </td>
                        <td>
                            <span title="申请人:<%#Eval("ApplicationName")%><br/>申请时间:<%#Eval("ApplicationTime")%>">申请信息</span>
                        </td>
                        <td>
                            <span title="审核人:<%#Eval("AuditName")%><br/>审核时间:<%#Eval("AuditTime")%>">审核信息</span>
                        </td>
                        <td>
                            <span title="批准人:<%#Eval("ApproveName")%><br/>批准时间:<%#Eval("ApproveTime")%>">批准信息</span>
                        </td>
                        <td class="Operate">
                            <span menu_member_case_id="case_EditModel" menu_member_case_name="审核申请" onclick="EditModel('<%#Eval("Keyid")%>')">审核申请</span>
                        </td>
                    </tr>
                </ItemTemplate>
                <FooterTemplate>
                    </table>
                </FooterTemplate>
            </asp:Repeater>
            <div id="page">
                <uc:UCPager ID="UCPager1" runat="server" />
            </div>
        </div>
    </div>
    </form>
</body>
</html>