MicroCommunityWeb/public/components/scm/applyWithholdIntegral/applyWithholdIntegral.html
2024-06-08 16:21:16 +08:00

81 lines
4.0 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='applyWithholdIntegral'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='积分ID' namespace='applyWithholdIntegral'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='积分名称' namespace='applyWithholdIntegral'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='提现金额' namespace='applyWithholdIntegral'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='申请人' namespace='applyWithholdIntegral'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='申请人电话' namespace='applyWithholdIntegral'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='银行账户' namespace='applyWithholdIntegral'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='账号名称' namespace='applyWithholdIntegral'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='开户行' namespace='applyWithholdIntegral'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='申请说明' namespace='applyWithholdIntegral'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='状态' namespace='applyWithholdIntegral'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='审核说明' namespace='applyWithholdIntegral'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='操作'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="apply in applyWithholdIntegralInfo.applys">
<td class="text-center">{{apply.iwId}}</td>
<td class="text-center">{{apply.integralId}}</td>
<td class="text-center">{{apply.integralName}}</td>
<td class="text-center">{{apply.amount}}</td>
<td class="text-center">{{apply.applyUserName}}</td>
<td class="text-center">{{apply.applyUserTel}}</td>
<td class="text-center">{{apply.bankNum}}</td>
<td class="text-center">{{apply.bankNumName}}</td>
<td class="text-center">{{apply.bankName}}</td>
<td class="text-center">{{apply.remark}}</td>
<td class="text-center">{{apply.stateName}}</td>
<td class="text-center">{{apply.stateMsg}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteIntegralWithdrawalModel(apply)">
<vc:i18n name='删除'></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/deleteApplyWithholdIntegral"></vc:create>
</div>