|
|
|
@ -99,6 +99,8 @@ |
|
|
|
<td>{{item.withdrawal_fee}}</td> |
|
|
|
<td class="text-right"> |
|
|
|
{{item.status_text}} |
|
|
|
<span v-if="item.status==0" @click="revoke(item.id)" |
|
|
|
style="background: #F7D558;padding: 4px 8px;border-radius: 4px;">{{ $t('common.cancel') }}</span> |
|
|
|
</td> |
|
|
|
<!-- <td v-if="item.status==0" class="text-right">{{$t('wallet.processing')}}</td> |
|
|
|
<td v-if="item.status==1" class="text-right">{{$t('wallet.success')}}</td> |
|
|
|
@ -248,6 +250,13 @@ export default { |
|
|
|
load3() { |
|
|
|
console.log('load3') |
|
|
|
}, |
|
|
|
// 撤销提币 |
|
|
|
revoke(itemId){ |
|
|
|
Wallet.cancelWithdraw({ withdraw_id: itemId }).then(res => { |
|
|
|
this.$message.success(this.$t('contract.d4')); |
|
|
|
this.getWithdrawRecords() |
|
|
|
}) |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
watch: { |
|
|
|
|