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

85 lines
4.4 KiB
HTML

<div class="">
<div class="margin-top">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name='编号' namespace='applyWithholdGold'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='金币ID' namespace='applyWithholdGold'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='账户名称' namespace='applyWithholdGold'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='小区编号' namespace='applyWithholdGold'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='提现金额' namespace='applyWithholdGold'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='申请人' namespace='applyWithholdGold'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='申请人电话' namespace='applyWithholdGold'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='银行账户' namespace='applyWithholdGold'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='账号名称' namespace='applyWithholdGold'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='开户行' namespace='applyWithholdGold'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='申请说明' namespace='applyWithholdGold'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='状态' namespace='applyWithholdGold'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='审核说明' namespace='applyWithholdGold'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='操作' namespace="applyWithholdGold"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="applyWithholdGold in applyWithholdGoldInfo.applys">
<td class="text-center">{{applyWithholdGold.gwId}}</td>
<td class="text-center">{{applyWithholdGold.goldId}}</td>
<td class="text-center">{{applyWithholdGold.goldName}}</td>
<td class="text-center">{{applyWithholdGold.communityId}}</td>
<td class="text-center">{{applyWithholdGold.amount}}</td>
<td class="text-center">{{applyWithholdGold.applyUserName}}</td>
<td class="text-center">{{applyWithholdGold.applyUserTel}}</td>
<td class="text-center">{{applyWithholdGold.bankNum}}</td>
<td class="text-center">{{applyWithholdGold.bankNumName}}</td>
<td class="text-center">{{applyWithholdGold.bankName}}</td>
<td class="text-center">{{applyWithholdGold.remark}}</td>
<td class="text-center">{{applyWithholdGold.stateName}}</td>
<td class="text-center">{{applyWithholdGold.stateMsg}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteGoldWithdrawalModel(applyWithholdGold)">
<vc:i18n name='删除' namespace="applyWithholdGold"></vc:i18n>
</button>
</div>
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4"></div>
<div class="col-sm-8">
<vc:create namespace="goldDetail" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
<vc:create path="scm/deleteApplyWithholdGold"></vc:create>
</div>