<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ComplainanListBySys.aspx.cs" Inherits="CY.WebForm.Pages.webmanage.ComplainanListBySys" %>
|
|
<!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 onViewMember(MemberId) {
|
top.Dialog.open({ URL: "/Pages/membermanage/CMSMemberDetail.aspx?MemberId=" + MemberId, Title: "查看会员信息", Width: 820, Height: 560 });
|
}
|
|
function onSet(keyId) {
|
top.Dialog.open({ URL: "/Pages/webmanage/ComplaintsManageBySys.aspx?keyId=" + keyId, Title: "处理投诉管理",Height: 600});
|
}
|
|
function onView(keyId) {
|
top.Dialog.open({ URL: "/Pages/webmanage/ComplaintsViewBySys.aspx?keyId=" + keyId, Title: "查看投诉详情", Height: 600 });
|
}
|
|
$(
|
function () {
|
$(".hidComplaintsStatusId").each(
|
function () {
|
var value = $(this).val();
|
if (value == "3" || value == "4") {
|
$(this).prev().hide();
|
}
|
}
|
);
|
}
|
);
|
</script>
|
</head>
|
<body>
|
<form id="form1" runat="server">
|
<div class="box1" panelTitle="查询条件" roller="false">
|
<table>
|
<tr>
|
<td>投诉类型:</td>
|
<td><asp:DropDownList ID="ddlComplaintsType"
|
runat="server" CssClass="Sreq" keepdefaultstyle='true'
|
style="margin-right:10px">
|
</asp:DropDownList></td>
|
<td>被投诉人:</td>
|
<td><input type="text" style="width:160px;margin-right:10px" runat="server" id="txtRespondentName"/></td>
|
<td>订单编号:</td>
|
<td><input type="text" style="width:160px;margin-right:10px" runat="server" id="txtOrderCode"/></td>
|
<td>投诉状态:</td>
|
<td><asp:DropDownList ID="ddlComplaintsStatus" runat="server" keepdefaultstyle='true' style="margin-right:10px">
|
</asp:DropDownList></td>
|
<td><asp:Button ID="btn_Query" Text="查询" runat="server" onclick="btn_Query_Click" /></td>
|
<td><asp:Button ID="btnReSet" Text="重置" runat="server" onclick="btnReSet_Click"/></td>
|
</tr>
|
</table>
|
</div>
|
<div id="scrollContent" >
|
<asp:Repeater ID="RepComplainanList" runat="server">
|
<HeaderTemplate>
|
<table class="tableStyle" useClick="false" useCheckBox="true" sortMode="true" id="tbComplainanList">
|
<tr>
|
<%-- <th width="25"></th>--%>
|
<th>投诉人</th>
|
<th>投诉类型</th>
|
<th>被投诉人</th>
|
<th>订单编号</th>
|
<th>投诉状态</th>
|
<th>投诉时间</th>
|
<th>投诉缘由</th>
|
<th width="80">操作</th>
|
</tr>
|
</HeaderTemplate>
|
<ItemTemplate>
|
<tr>
|
<%-- <td><input type="checkbox" value='<%#Eval("KeyId")%>'/></td>--%>
|
<td><a onclick='onViewMember("<%#Eval("ComplainantId")%>")'><%#Eval("ComplainantName")%></a></td>
|
<td><%#Eval("ComplaintsTypeName")%></td>
|
<td><a onclick='onViewMember("<%#Eval("RespondentId")%>")'><%#Eval("RespondentName")%></a></td>
|
<td><%#GetOrderLink(Eval("OrderId"),Eval("OrderCode"))%></td>
|
<td><%#Eval("ComplaintsStatus")%></td>
|
<td><%#Eval("ComplaintsTime")%></td>
|
<td ><span class="text_slice" style="width:200px;" title='<%#Eval("ComplaintsReason")%>'><%#Eval("ComplaintsReason")%></span></td>
|
<td class="Operate">
|
<span menu_member_case_id="case_onSet" menu_member_case_name="处理" onclick="onSet(<%#Eval("KeyId")%>)">处理</span><input id="Hidden1" class="hidComplaintsStatusId" type="hidden" value='<%#Eval("ComplaintsStatusId")%>' runat="server"/>
|
<span menu_member_case_id="case_onView" menu_member_case_name="详情" onclick="onView(<%#Eval("KeyId")%>)">详情</td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
</table>
|
</FooterTemplate>
|
</asp:Repeater>
|
<div id="page">
|
<uc:UCPager ID="UCPager1" runat="server"/>
|
</div>
|
</div>
|
</form>
|
</body>
|
</html>
|