MicroCommunityWeb/public/components/fee/aRefundDeposit/aRefundDeposit.html

49 lines
2.1 KiB
HTML

<div>
<div class="row margin-top">
<div class="col-lg-10 text-right"></div>
<div class="col-lg-2 text-right">
</div>
</div>
<div>
<table class="footable table table-stripped toggle-arrow-tiny" style="margin-top:10px" data-page-size="10">
<thead>
<tr>
<th class="text-center">
<vc:i18n name="收费对象" namespace="aRefundDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="费用项" namespace="aRefundDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="时间段" namespace="aRefundDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="金额" namespace="aRefundDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="缴费时间" namespace="aRefundDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="状态" namespace="aRefundDeposit"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="fee in aRefundDepositInfo.fees">
<td class="text-center">{{fee.payerObjName}}</td>
<td class="text-center">{{fee.feeName}}</td>
<td class="text-center">{{fee.startTime}}~{{fee.endTime}}</td>
<td class="text-center">{{fee.receivedAmount}}</td>
<td class="text-center">{{fee.createTime}}</td>
<td class="text-center">{{fee.stateName}}</td>
</tr>
</tbody>
</table>
<div class="row">
<div class="col-sm-12 float-right">
<vc:create namespace="aRefundDeposit" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>