Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/pages/admin/goldBuyCartManage/goldBuyCartManage.html
2025-12-09 20:22:03 +08:00

54 lines
3.2 KiB
HTML

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5><span><vc:i18n name="购买记录" namespace="goldBuyCartManage"></vc:i18n></span></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"><span><vc:i18n name="交易编号" namespace="goldBuyCartManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="商户名称" namespace="goldBuyCartManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="金额" namespace="goldBuyCartManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="数量" namespace="goldBuyCartManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="金币类型" namespace="goldBuyCartManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="购买人" namespace="goldBuyCartManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="购买时间" namespace="goldBuyCartManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="备注" namespace="goldBuyCartManage"></vc:i18n></span></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>