Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/pages/fee/refundDepositFee/refundDepositFee.html
2025-12-09 20:22:03 +08:00

98 lines
5.2 KiB
HTML

<div>
<div class="row">
<div class="col-md-1 padding-r-0">
<div class=" border-radius ">
<div class="margin-xs-r treeview ">
<ul class="list-group text-center border-radius">
<li class="list-group-item node-orgTree " v-for="(item,index) in refundDepositFeeInfo.states"
:key="index" @click="_switchDepositState(item)"
:class="{'vc-node-selected':refundDepositFeeInfo.state == item.state}">
{{item.name}}
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-11">
<div class="ibox">
<div class="ibox-title">
<h5>
<vc:i18n name="退押金" namespace="refundDepositFee"></vc:i18n>
</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-white btn-sm" v-on:click="_printRefundFeeReceipt()">
<vc:i18n name="补打退款单" namespace="refundDepositFee"></vc:i18n>
</button>
<button type="button" class="btn btn-white btn-sm" v-on:click="vc.goBack()">
<vc:i18n name="返回" namespace="refundDepositFee"></vc:i18n>
</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">
<vc:i18n name="收费对象" namespace="payFeeDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="费用项" namespace="payFeeDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="时间段" namespace="payFeeDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="金额" namespace="payFeeDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="缴费时间" namespace="payFeeDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="状态" namespace="payFeeDeposit"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="操作" namespace="payFeeDeposit"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="fee in refundDepositFeeInfo.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="payFeeDeposit"></vc:i18n>
</button>
</div>
<div class="btn-group">
<button type="button" class="btn btn-white btn-sm"
v-on:click="_toFeeDetail(fee)">
<vc:i18n name="详情" namespace="payFeeDeposit"></vc:i18n>
</button>
</div>
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row margin-top-xs">
<div class="col-sm-9">
</div>
<div class="col-sm-3 float-right">
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
</div>
</div>
<vc:create path="property/returnPayFee"></vc:create>
</div>