Skip to content

Commit

Permalink
add withdraw info
Browse files Browse the repository at this point in the history
  • Loading branch information
PMPanel committed Jan 29, 2022
1 parent 4b53599 commit 2efabd7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/views/funds/Funds.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
<span style="margin-right: 5px">{{ $t('funds.withdraw') }}</span>
<a-tooltip>
<template slot="title">
<span>
{{ $i18n.locale === 'zh-CN' ? minWithdraw + ' CNY起' : 'At least ' + minWithdraw + 'CNY' }}
</span>
,
<span v-if="withdrawRate === 0">
{{ $i18n.locale === 'zh-CN' ? '免提现手续费' : 'No withdrawal fee' }}
</span>
Expand Down Expand Up @@ -82,6 +86,7 @@ export default {
pageSize: 5,
total: 0,
enableWithdraw: false,
minWithdraw: 0,
withdrawRate: 0,
amount: 0,
account: '',
Expand All @@ -106,6 +111,7 @@ export default {
this.total = result.data.funds.totalCount
this.withdrawRate = result.data.funds.withdrawRate
this.enableWithdraw = result.data.funds.enableWithdraw
this.minWithdraw = result.data.funds.minWithdraw
console.log(result.data.funds)
this.loading = false
}
Expand Down

0 comments on commit 2efabd7

Please sign in to comment.