MicroCommunityWeb/public/pages/property/accountDetailManage/accountDetailManage.html
2021-06-17 00:21:02 +08:00

51 lines
2.4 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>
</tr>
</thead>
<tbody>
<tr v-for="accountDetail in accountDetailManageInfo.accountDetails">
<td class="text-center">{{accountDetail.detailId}}</td>
<td class="text-center">{{accountDetail.orderId}}</td>
<td class="text-center">{{accountDetail.acctName}}</td>
<td class="text-center">{{accountDetail.detailType =='1001'?'转入':'转出'}}</td>
<td class="text-center">{{accountDetail.amount}}</td>
<td class="text-center">{{accountDetail.createTime}}</td>
<td class="text-center">{{accountDetail.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>