| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage/ErpView.master" AutoEventWireup="true" CodeFile="SetSampleList.aspx.cs" Inherits="EFinance_SetSampleList" %>
- <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
- <script type="text/javascript" src="js/SetSampleList.js?v=<%=SiteVer %>"></script>
-
- <style type="text/css">
- .win_tb {
- width: 96%;
- margin-left: auto;
- margin-right: auto;
- margin-top: 10px;
- background-color: #dedede;
- }
- .win_tb td {
- height: 36px;
- background-color: #fff;
- font-size: 14px;
- padding: 5px;
- }
- .win_tb input[type=text] {
- width: 90%;
- height: 24px;
- font-size: 14px;
- }
- .win_tb input[type=checkbox] {
- width: 18px;
- height: 18px;
- }
- .win_tb select {
- font-size: 14px;
- height: 30px;
- padding: 0px 5px;
- }
- .win_tb .td1 {
- color: #666;
- background-color: #F8F8F8;
- text-align: center;
- }
- .win_tb .td2 {
- }
- .word_tui {
- border-radius: 50%;
- background-color: red;
- color: white;
- font-size: 14px;
- text-align: center;
- padding: 3px;
- margin-left: 5px;
- }
- .word_shou {
- background-color: saddlebrown;
- }
- .word_green {
- background-color: forestgreen;
- }
- .mini-grid-cell-nowrap {
- overflow: hidden;
-
- word-break: keep-all;
- word-wrap: break-word;
- white-space: normal;
- }
- .hz{
- display:flex;flex-direction:row; float:right;margin-right:50px;font-size:14px;
- height:30px;line-height:30px;vertical-align:middle;
- }
- .hz a{height:30px;line-height:30px;}
- </style>
- </asp:Content>
- <asp:Content ID="Content2" ContentPlaceHolderID="btn" runat="Server">
- <a class="mini-button mini-button-primary" style="padding: 2px 5px 2px 5px;" iconcls="icon-upload" onclick="importSampleListFn()">订单导入</a>
- <a class="mini-button mini-button-primary" style="padding: 2px 5px 2px 5px;" iconcls="icon-download" onclick="comExportExcel('拿样明细')">导出</a>
- <div class="hz">
- 【拿样明细统计】
- <div id="id_gatherCount">(0)</div>
- <div style="margin-left:10px;" id="id_gatherSum">(0)</div>
- <div style="margin-left:10px;" id="id_gatherFu">(0)</div>
- <div style="margin-left:10px;" id="id_gatherYong" >(0)</div>
- <div style="margin-left: 10px;" id="id_gatherKuaidi">(0)</div>
- </div>
- </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%;" showemptytext="true" emptytext="暂无记录" url="../handler/sync.ashx?t=get_erp_sample">
- <div property="columns">
- <div type="indexcolumn" width="20"></div>
- <div type="checkcolumn" width="20"></div>
- <div field="ctid" width="150" align="center" headeralign="center">订单号</div>
- <div field="shopName" width="80" align="center" style="color:red;" headeralign="center" renderer="SellerBuyerRenderer">店铺</div>
- <div field="pay_time" width="60" align="center" headeralign="center" renderer="orderPTimeRenderer">付款时间</div>
- <div field="payment" width="50" align="center" headeralign="center">订单金额</div>
- <div field="AdvanceFee" width="60" align="center" headeralign="center">垫付金额</div>
- <div field="Refund" width="60" align="center" headeralign="center">返款金额</div>
- <div field="ServiceFee" width="50" align="center" headeralign="center">服务费</div>
- <div field="Commission" width="50" align="center" headeralign="center">佣金</div>
- <div field="LogisticsFee" width="60" align="center" headeralign="center">快递费</div>
- <div field="status" width="100" align="center" headeralign="center" renderer="orderStatusRenderer">状态</div>
- </div>
- </div>
- </div>
- </asp:Content>
|