MicroCommunityWeb/public/components/fee/aRoomFeeCallable/aRoomFeeCallable.html

82 lines
3.5 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='aRoomFeeCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='业主名称' namespace='aRoomFeeCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='付费对象名称' namespace='aRoomFeeCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='费用名称' namespace='aRoomFeeCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='催缴金额' namespace='aRoomFeeCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='欠费时间段' namespace='aRoomFeeCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='催缴方式' namespace='aRoomFeeCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='催缴人' namespace='aRoomFeeCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='状态' namespace='aRoomFeeCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='说明' namespace='aRoomFeeCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='创建时间' namespace='aRoomFeeCallable'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="callable in aRoomFeeCallableInfo.callables">
<td class="text-center">{{callable.ofcId}}</td>
<td class="text-center">{{callable.ownerName}}</td>
<td class="text-center">{{callable.payerObjName}}</td>
<td class="text-center">{{callable.feeName}}</td>
<td class="text-center">{{callable.amountdOwed}}</td>
<td class="text-center">{{callable.startTime}}</br>
~{{callable.endTime}}
</td>
<td class="text-center">{{callable.callableWayName}}</td>
<td class="text-center">{{callable.staffName}}</td>
<td class="text-center">{{callable.stateName}}</td>
<td class="text-center">
<div class="textAuto" style="max-width: 200px;">{{callable.remark}}</div>
</td>
<td class="text-center">{{callable.createTime}}</td>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="16">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<div class="row">
<div class="col-sm-12 float-right">
<vc:create namespace="aRoomFeeCallable" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>