<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CMSProxyApplicationList.aspx.cs" Inherits="CY.WebForm.Pages.webmanage.CMSProxyApplicationList" %>
|
|
<!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" />
|
<script type="text/javascript">
|
///记录详情
|
function EditModel(keyid) {
|
top.Dialog.open({ URL: "/Pages/webmanage/CMSProxyApplicationDetail.aspx?keyid=" + keyid, Title: "代理申请详情", Width: 950, Height: 600 });
|
}
|
</script>
|
</head>
|
<body>
|
<form id="form1" runat="server">
|
<div id="scrollContent">
|
<div class="box1" paneltitle="功能面板" roller="false">
|
<table class="">
|
<tr>
|
<td>
|
申请单位:
|
<input type="text" id="txtMemberName" runat="server" />
|
处理状态:
|
<select id="selApplicationStatus" runat="server" keepDefaultStyle="true">
|
<option value="">全部</option>
|
<option value="已申请">已申请</option>
|
<option value="同意申请">同意申请</option>
|
<option value="拒绝申请">拒绝申请</option>
|
</select>
|
<asp:Button ID="btn_Submit" Text="查询" runat="server" OnClick="btn_Search_Click" />
|
</td>
|
</tr>
|
</table>
|
</div>
|
<%-- <div class="box_tool_min ">
|
<div class="center">
|
<div class="left">
|
<div class="right">
|
<div class="padding_top5 padding_left10">
|
|
<div class="clear">
|
</div>
|
</div>
|
</div>
|
</div>
|
</div>
|
<div class="clear">
|
</div>
|
</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>
|
</tr>
|
</HeaderTemplate>
|
<ItemTemplate>
|
<tr>
|
<td>
|
<%#Container.ItemIndex + 1+ this.UCPager1.PageSize * (this.UCPager1.PageIndex - 1)%>
|
</td>
|
<td>
|
<%#Eval("ApplicationTime")%>
|
</td>
|
<td>
|
<%#Eval("UnitName").ToString().Trim('-')%>
|
</td>
|
<td>
|
<%#Eval("ApplicationType")%>
|
</td>
|
<td>
|
<%#Eval("ApplicationArea")%>
|
</td>
|
<td>
|
<%#Eval("ApplicationStatus")%>
|
</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>
|