CustomerGather.aspx 1.7 KB

1234567891011121314151617181920212223242526
  1. <%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage/ErpView.master" AutoEventWireup="true" CodeFile="CustomerGather.aspx.cs" Inherits="EOrder_CustomerGather" %>
  2. <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
  3. <script type ="text/javascript" src="../js/address.js"></script>
  4. <script type="text/javascript" src="js/CustomerGather.js"></script>
  5. </asp:Content>
  6. <asp:Content ID="Content2" ContentPlaceHolderID="btn" runat="Server">
  7. <a class="mini-button mini-button-primary" iconcls="icon-folder" onclick="exportFn()">导出</a>
  8. </asp:Content>
  9. <asp:Content ID="Content4" ContentPlaceHolderID="content" runat="Server">
  10. <div class="mini-fit">
  11. <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">
  12. <div property="columns">
  13. <div type="indexcolumn" width="20"></div>
  14. <div field="CusName" width="60" align="center" headeralign="center">客服</div>
  15. <div field="Amount" width="60" align="center" headeralign="center">领单金额</div>
  16. <div field="AllOrder" width="60" align="center" headeralign="center">领单数量</div>
  17. <%-- <div field="WaitRelease" width="60" align="center" headeralign="center">待发布</div>
  18. <div field="WaitRob" width="60" align="center" headeralign="center">待抢单</div>--%>
  19. <div field="Refund" width="60" align="center" headeralign="center">退款数量</div>
  20. <div field="RefundSum" width="60" align="center" headeralign="center">退款金额</div>
  21. </div>
  22. </div>
  23. </div>
  24. </asp:Content>