RefundScheduleQuery.html 2.3 KB
<style type="text/css">
    #refund ul li { list-style-type:none; }
</style>

<div class="pageheader notab">
    <h1 class="pagetitle">退款/售后管理</h1>
    <span class="pagedesc">管理V商城中审核退款/退货订单</span>
</div>
<paging>
    <div id="contentwrapper" class="contentwrapper">
        <!--contenttitle-->
        <table cellpadding="0" cellspacing="0" border="0" class="stdtable"
               id="dyntable3">
            <thead>
            <tr>
                <th class="head0">退款号</th>
                <th class="head0">操作人姓名</th>
                <th class="head0">操作人电话</th>
                <th class="head0">会员ID</th>
                <th class="head0">操作状态</th>
                <th class="head0">操作人角色</th>
                <th class="head0">操作时间</th>
            </tr>
            </thead>
            <tbody>
            <tr id="refund" class="gradeX" ng-repeat="refundRecord in refundProcedureRecords" >
                <td>{{ refundRecord.refundCode }} </td>
                <td>{{ refundRecord.operatorName }} </td>
                <td>{{ refundRecord.operatorPhone }} </td>
                <td>{{ refundRecord.memberId }} </td>
                <td>{{ refundRecord.operatorStatus }} </td>
                <td>{{ refundRecord.operatorRole }} </td>
                <td>{{ refundRecord.operatorDate }} </td>
            </tr>
            </tbody>
        </table>
    </div>
   <!-- <div class="angular_pager" style="margin-left: 20px;">
        <ul class="pagination" num-pages="numPages" current-page="currentPage" on-select-page="selectPage(page)">
            <li ng-class="{disabled: noPrevious()}"> <a ng-click="selectPrevious()">&laquo;</a>
            </li>
            <li ng-repeat="page in pages" ng-class="{active: isActive(page)}"> <a ng-click="selectPage(page)">{{page}}</a>
            </li>
            <li ng-class="{disabled: noNext()}"> <a ng-click="selectNext()">&raquo;</a>
            </li>
            <li><span style="position: relative;top: 5px;margin-left: 10px;font-size: 14px;">共:<b style="color: red;">{{numPages}}</b>页,当前第<b style="color: red;">{{currentPage}}</b>页;总记录数:<b style="color: red;">{{totalRecord}}</b>条</span></li>
        </ul>
    </div>-->
</paging>