Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/components/community/aRoomDetailReceipt/aRoomDetailReceipt.html
2025-12-09 20:22:03 +08:00

56 lines
2.5 KiB
HTML

<div>
<div class="row margin-top-lg">
<div class="col-lg-6 padding-right-xs padding-left-xl" >
</div>
<div class="col-lg-6 text-right padding-right-lg">
</div>
</div>
<div class="margin-top">
<table class="footable table table-stripped toggle-arrow-tiny margin-top" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name="费用类型" namespace="aRoomDetailReceipt"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="业主" namespace="aRoomDetailReceipt"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="费用项目" namespace="aRoomDetailReceipt"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="收费时间段" namespace="aRoomDetailReceipt"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="总金额" namespace="aRoomDetailReceipt"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="缴费时间" namespace="aRoomDetailReceipt"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="收据ID" namespace="aRoomDetailReceipt"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="feeReceipt in aRoomDetailReceiptInfo.feeReceipts">
<td class="text-center">{{feeReceipt.objName}}</td>
<td class="text-center">{{feeReceipt.payObjName}}</td>
<td class="text-center">{{feeReceipt.feeName}}</td>
<td class="text-center">{{vc.dateFormat(feeReceipt.startTime)}}~<br/>
{{vc.dateFormat(feeReceipt.endTime)}}
</td>
<td class="text-center">{{feeReceipt.amount}}元</td>
<td class="text-center">{{feeReceipt.createTime}}</td>
<td class="text-center">{{feeReceipt.receiptId}}</td>
</tr>
</tbody>
</table>
<div class="row">
<div class="col-sm-12 float-right">
<vc:create namespace="aRoomDetailReceipt" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>