Files
PropertyDeployment/resources/Web/MicroCommunityIotWeb/html/components/charge/adminChargeDetailAcct/adminChargeDetailAcct.html
2025-12-09 20:22:03 +08:00

39 lines
1.6 KiB
HTML

<div class="margin-top">
<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='adminChargeDetailAcct'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='账户' namespace='adminChargeDetailAcct'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='账户类型' namespace='adminChargeDetailAcct'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='账户余额' namespace='adminChargeDetailAcct'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="account in adminChargeDetailAcctInfo.accounts">
<td class="text-center">{{account.acctId}}</td>
<td class="text-center">{{account.acctName}}</td>
<td class="text-center">{{account.acctTypeName}}</td>
<td class="text-center">{{account.amount}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4">
</div>
<div class="col-sm-8">
<vc:create namespace="adminChargeDetailAcct" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>