MicroCommunityWeb/public/pages/property/feeManualCollectionDetailManage/feeManualCollectionDetailManage.html
2021-04-23 10:14:20 +08:00

62 lines
3.0 KiB
HTML
Executable File

<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;">
<button class="btn btn-primary btn-sm" type="button"
v-on:click="_openTranslateFeeManualCollectionDetailModel()">同步欠费</button>
<button type="button" class="btn btn-primary btn-sm" v-on:click="_goBack()">
返回
</button>
</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-right">操作</th>
</tr>
</thead>
<tbody>
<tr
v-for="feeManualCollectionDetail in feeManualCollectionDetailManageInfo.feeManualCollectionDetails">
<td class="text-center">{{feeManualCollectionDetail.feeName}}</td>
<td class="text-center">{{feeManualCollectionDetail.amount}}</td>
<td class="text-center">{{feeManualCollectionDetail.startTime}}</td>
<td class="text-center">{{feeManualCollectionDetail.endTime}}</td>
<td class="text-center">{{feeManualCollectionDetail.stateName}}</td>
<td class="text-right">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteFeeManualCollectionDetailModel(feeManualCollectionDetail)">取消托收</button>
</div>
</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>
<vc:create path="property/deleteFeeManualCollectionDetail"></vc:create>
</div>