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

66 lines
3.6 KiB
HTML

<div>
<div class="row" v-if="payFeeUserAccountInfo.accountList.length>0">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>
<vc:i18n name="账户信息" namespace="payFeeUserAccount"></vc:i18n>
</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
v-on:click="_queryPayFeeUserAccount()">
<i class="fa fa-refresh"></i>
<vc:i18n name="刷新" namespace="payFeeUserAccount"></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="payFeeUserAccount"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="账户类型" namespace="payFeeUserAccount"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="账户名" namespace="payFeeUserAccount"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="账户金额" namespace="payFeeUserAccount"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="操作" namespace="payFeeUserAccount"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="userAccount in payFeeUserAccountInfo.accountList">
<td class="text-center">
<input type="radio" name="selectAccount" @click="_computeFeeUserAmount(userAccount.acctId)" class="i-checks checkAccountItem"
v-bind:value="userAccount.acctId">
</td>
<td class="text-center">{{userAccount.acctTypeName}}</td>
<td class="text-center">{{userAccount.acctName}}</td>
<td class="text-center">{{userAccount.amount}}
<span>
<vc:i18n name="元" namespace="payFeeUserAccount"></vc:i18n>
</span>
</td>
<td class="text-center">
<button type="button"
class="btn btn-primary btn-sm"
v-on:click="_openAddUserAmountModal(userAccount)">
<i class="fa fa-plus"></i>
<vc:i18n name="预存" namespace="payFeeUserAccount"></vc:i18n>
</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>