|
@@ -21,19 +21,17 @@
|
|
|
<div class="form-item">
|
|
|
<div class="label">PayPal account</div>
|
|
|
<div class="input-wrapper">
|
|
|
- <input type="text"
|
|
|
- v-model="requestWithdrawParams.withdrawReceiveAccount" placeholder="Enter PayPal account"/>
|
|
|
+ <input type="text" v-model="requestWithdrawParams.withdrawReceiveAccount"
|
|
|
+ placeholder="Enter PayPal account" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="form-item">
|
|
|
- <div class="label">Withdrawal amount<span
|
|
|
- class="msg">(${{ walletWithdrawConfig.withdrawPerMinAmount }} minimum)</span></div>
|
|
|
+ <div class="label">Withdrawal amount<span class="msg">(${{
|
|
|
+ walletWithdrawConfig.withdrawPerMinAmount
|
|
|
+ }} minimum)</span></div>
|
|
|
<div class="input-wrapper amount-wrapper">
|
|
|
- <input type="text"
|
|
|
- v-model="requestWithdrawParams.amountValue"
|
|
|
- placeholder="$0"
|
|
|
- style="width: 220px"
|
|
|
- @input="onAmountInput" />
|
|
|
+ <input type="text" v-model="requestWithdrawParams.amountValue" placeholder="$0"
|
|
|
+ style="width: 220px" @input="onAmountInput" />
|
|
|
<div @click="withdrawalAll" class="withdrawal-all-btn">
|
|
|
Withdrawal All
|
|
|
</div>
|
|
@@ -79,8 +77,9 @@
|
|
|
<div>
|
|
|
<div class="title">Submitted successfully</div>
|
|
|
<div class="desc">
|
|
|
- Please wait for a while,<br />
|
|
|
- then check the balance with paypal
|
|
|
+ <!-- Please wait for a while,<br />
|
|
|
+ then check the balance with paypal -->
|
|
|
+ Estimate in 24 hours
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -122,10 +121,10 @@ let isSubmit = ref(false);
|
|
|
let withdrawIng = ref(false);
|
|
|
|
|
|
let walletWithdrawConfig = ref({
|
|
|
- withdrawPerMinAmount: 1,
|
|
|
- withdrawUSDSwitch: "",
|
|
|
- withdrawFeeDesc: ''
|
|
|
- });
|
|
|
+ withdrawPerMinAmount: 1,
|
|
|
+ withdrawUSDSwitch: "",
|
|
|
+ withdrawFeeDesc: ''
|
|
|
+});
|
|
|
|
|
|
let finalWithdrawalAmount = ref('');
|
|
|
let calcReq = ref(false);
|
|
@@ -146,7 +145,7 @@ const queryWithdrawConfig = () => {
|
|
|
if (res.code == 0) {
|
|
|
walletWithdrawConfig.value = res.data;
|
|
|
}
|
|
|
- console.log('queryWithdrawConfig',walletWithdrawConfig.value);
|
|
|
+ console.log('queryWithdrawConfig', walletWithdrawConfig.value);
|
|
|
});
|
|
|
};
|
|
|
|