MicroCommunityWeb/public/components/fee/simplifyRefundDeposit/simplifyRefundDeposit.html
2024-06-12 02:10:54 +08:00

65 lines
3.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="simplifyRefundDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="费用项" namespace="simplifyRefundDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="时间段" namespace="simplifyRefundDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="金额" namespace="simplifyRefundDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="缴费时间" namespace="simplifyRefundDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="状态" namespace="simplifyRefundDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="操作" namespace="simplifyRefundDeposit"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="fee in simplifyRefundDepositInfo.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>
<td class="text-center">
<div class="btn-group" v-if="fee.state == '1400'">
<button type="button" class="btn btn-white btn-sm" v-on:click="_openRefundModel(fee)">
<vc:i18n name="退押金" namespace="simplifyRefundDeposit"></vc:i18n>
</button>
</div>
<div class="btn-group">
<button type="button" class="btn btn-white btn-sm"
v-on:click="_toSimplifyFeeDepositFeeDetail(fee)">
<vc:i18n name="详情" namespace="simplifyRefundDeposit"></vc:i18n>
</button>
</div>
</td>
</tr>
</tbody>
</table>
<div class="row">
<div class="col-sm-12 float-right">
<vc:create namespace="simplifyRefundDeposit" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>