Files
2025-12-09 20:22:03 +08:00

53 lines
2.5 KiB
HTML

<div class="">
<div class="margin-top">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name='编号' namespace='communityIntegralDetail'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='金币账户' namespace='communityIntegralDetail'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='类型' namespace='communityIntegralDetail'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='交易金额' namespace='communityIntegralDetail'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='当前金额' namespace='communityIntegralDetail'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='交易单号' namespace='communityIntegralDetail'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='备注' namespace='communityIntegralDetail'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='时间' namespace='communityIntegralDetail'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="detail in communityIntegralDetailInfo.details">
<td class="text-center">{{detail.detailId}}</td>
<td class="text-center">{{detail.integralName}}</td>
<td class="text-center">{{detail.detailType == '1001'?'转入':'转出'}}</td>
<td class="text-center">{{detail.amount}}</td>
<td class="text-center">{{detail.totalAmount}}</td>
<td class="text-center">{{detail.orderId}}</td>
<td class="text-center">{{detail.remark}}</td>
<td class="text-center">{{detail.createTime}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4"></div>
<div class="col-sm-8">
<vc:create namespace="communityIntegralDetail" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>