MicroCommunityWeb/public/pages/admin/goldBuyCartManage/goldBuyCartManage.html
2021-05-03 17:35:58 +08:00

53 lines
2.5 KiB
HTML

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>购买记录</h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">交易编号</th>
<th class="text-center">商户名称</th>
<th class="text-center">金额</th>
<th class="text-center">数量</th>
<th class="text-center">金币类型</th>
<th class="text-center">购买人</th>
<th class="text-center">购买时间</th>
<th class="text-center">备注</th>
</tr>
</thead>
<tbody>
<tr v-for="systemGoldSetting in goldBuyCartManageInfo.systemGoldSettings">
<td class="text-center">{{systemGoldSetting.busiId}}</td>
<td class="text-center">{{systemGoldSetting.storeName}}</td>
<td class="text-center">{{systemGoldSetting.amount}}</td>
<td class="text-center">{{systemGoldSetting.goldCount}}</td>
<td class="text-center">{{systemGoldSetting.goldTypeName}}</td>
<td class="text-center">{{systemGoldSetting.buyerName}}</td>
<td class="text-center">{{systemGoldSetting.createTime}}</td>
<td class="text-center">{{systemGoldSetting.remark}}</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
</div>