|
|
@@ -2,8 +2,8 @@
|
|
|
<div v-loading="loading">
|
|
|
<div class="white-box">
|
|
|
<el-form ref="form" :model="form" label-width="200px" style="width:500px;">
|
|
|
- <el-form-item label="Currently available bonus"><!-- 当前可用奖金 -->
|
|
|
- <el-tag type="success">{{balance}}$</el-tag>
|
|
|
+ <el-form-item label="Available bonus"><!-- 当前可用奖金 -->
|
|
|
+ <el-tag type="success">{{balance}} </el-tag>
|
|
|
</el-form-item>
|
|
|
<!--<el-form-item label="当前提现比例">-->
|
|
|
<!--<el-tag type="info">{{withdrawProp}}%</el-tag>-->
|
|
|
@@ -12,18 +12,18 @@
|
|
|
<!--<el-tag type="info">{{maxAmount}}元</el-tag>-->
|
|
|
<!--</el-form-item>-->
|
|
|
<el-form-item label="Minimum withdrawal amount"><!-- 最小提现金额 -->
|
|
|
- <el-tag type="info">{{minAmount}}$</el-tag>
|
|
|
+ <el-tag type="info">{{minAmount}}</el-tag>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="Withdrawal charge"><!-- 提现手续费 -->
|
|
|
- <el-tag type="info">{{withdrawFee}}%</el-tag>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="Cash withdrawal amount"><!-- 提现金额 -->
|
|
|
+<!-- <el-form-item label="Withdrawal charge"><!– 提现手续费 –>-->
|
|
|
+<!-- <el-tag type="info">{{withdrawFee}}%</el-tag>-->
|
|
|
+<!-- </el-form-item>-->
|
|
|
+ <el-form-item label="Withdrawal Amount"><!-- 提现金额 -->
|
|
|
<el-input v-model="form.applyAmount" type="number" :min="minAmount" :max="maxAmount"></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="" v-if="isPact==='1'">
|
|
|
- <el-checkbox v-model="checked"> Agreed to</el-checkbox><!-- 同意 -->
|
|
|
- <a @click="dialogVisible = true" href="javascript:void(0)">《Service contract》</a><!-- 服务协议 -->
|
|
|
- </el-form-item>
|
|
|
+<!-- <el-form-item label="" v-if="isPact==='1'">-->
|
|
|
+<!-- <el-checkbox v-model="checked"> Agreed to</el-checkbox><!– 同意 –>-->
|
|
|
+<!-- <a @click="dialogVisible = true" href="javascript:void(0)">《Service contract》</a><!– 服务协议 –>-->
|
|
|
+<!-- </el-form-item>-->
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" @click="onSubmit" :loading="submitButtonStat" :disabled="!checked">Confirm</el-button><!-- 确定 -->
|
|
|
</el-form-item>
|
|
|
@@ -94,6 +94,7 @@
|
|
|
minAmount: 0,
|
|
|
withdrawFee: 0,
|
|
|
idCardInfoQrCodeUrl:'',
|
|
|
+ exchangeRate: 1,
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
@@ -111,7 +112,7 @@
|
|
|
this.isPact = response.isPact
|
|
|
this.checked=this.chkAgree()
|
|
|
this.content = response.content
|
|
|
- this.minAmount = response.minAmount
|
|
|
+ this.minAmount = Math.round(response.minAmount * response.exchangeRate * 100) / 100
|
|
|
this.withdrawFee = response.withdrawFee
|
|
|
this.getBalance()
|
|
|
}).catch(() => {
|