|
@@ -98,8 +98,8 @@ const inputWithdrawCalcFee = () => {
|
|
|
state.currency_code = res.data.currencyCode || ''
|
|
|
state.fee_amount = res.data.feeAmountValue || 0
|
|
|
state.amount = res.data.finalAmountValue || 111
|
|
|
-
|
|
|
state.is_enter_state = true
|
|
|
+ inputText()
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -118,7 +118,7 @@ const inputText = () => {
|
|
|
state.is_enter_state = false
|
|
|
return
|
|
|
}
|
|
|
-
|
|
|
+ console.log(state.input_address.trim().length)
|
|
|
if (state.input_address.trim().length != 42 || state.input_address.trim().substring(0, 2).toLowerCase() != '0x') {
|
|
|
state.error_msg = 'Incorrect wallet address input'
|
|
|
state.is_enter_state = false
|
|
@@ -189,6 +189,7 @@ const initConfig = () => {
|
|
|
|
|
|
onMounted(() => {
|
|
|
initConfig()
|
|
|
+ withdraw_info.enter_state = false
|
|
|
})
|
|
|
|
|
|
const clickWithdrawalAll = () => {
|