| 1234567891011121314151617181920212223242526 |
- <%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage/ErpView.master" AutoEventWireup="true" CodeFile="CustomerGather.aspx.cs" Inherits="EOrder_CustomerGather" %>
- <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
- <script type ="text/javascript" src="../js/address.js"></script>
- <script type="text/javascript" src="js/CustomerGather.js"></script>
- </asp:Content>
- <asp:Content ID="Content2" ContentPlaceHolderID="btn" runat="Server">
- <a class="mini-button mini-button-primary" iconcls="icon-folder" onclick="exportFn()">导出</a>
- </asp:Content>
- <asp:Content ID="Content4" ContentPlaceHolderID="content" runat="Server">
- <div class="mini-fit">
- <div id="m_grid" class="mini-datagrid" style="width: 100%; height: 100%;" showPager="false" showemptytext="true" emptytext="暂无记录,请选择部门" url="../handler/sync.ashx?t=get_erp_customer_gather">
- <div property="columns">
- <div type="indexcolumn" width="20"></div>
- <div field="CusName" width="60" align="center" headeralign="center">客服</div>
- <div field="Amount" width="60" align="center" headeralign="center">领单金额</div>
- <div field="AllOrder" width="60" align="center" headeralign="center">领单数量</div>
- <%-- <div field="WaitRelease" width="60" align="center" headeralign="center">待发布</div>
- <div field="WaitRob" width="60" align="center" headeralign="center">待抢单</div>--%>
- <div field="Refund" width="60" align="center" headeralign="center">退款数量</div>
- <div field="RefundSum" width="60" align="center" headeralign="center">退款金额</div>
- </div>
- </div>
- </div>
- </asp:Content>
|