|
|
@ -15,7 +15,7 @@ |
|
|
{{$t('recharge.a0')}}<van-icon name="arrow" /> |
|
|
{{$t('recharge.a0')}}<van-icon name="arrow" /> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view class="bg-panel-3" style="height: 100%;"> |
|
|
<view class="bg-panel-3" style="min-height: 100%; padding-bottom: 220rpx;"> |
|
|
<view class=""> |
|
|
<view class=""> |
|
|
<view |
|
|
<view |
|
|
class="d-flex flex-wrap justify-between align-center p-x-lg p-y-ms color-light" |
|
|
class="d-flex flex-wrap justify-between align-center p-x-lg p-y-ms color-light" |
|
|
@ -92,6 +92,16 @@ |
|
|
</template> |
|
|
</template> |
|
|
</v-input> |
|
|
</v-input> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
<view class="d-flex align-center p-y-xs m-t-ms justify-between color-light fn-15"> |
|
|
|
|
|
<span>{{ $t("reg.a8") }}:</span> |
|
|
|
|
|
<!-- <span class="color-light">{{ withdrawFee.withdrawal_fee }} {{coin}}</span> --> |
|
|
|
|
|
</view> |
|
|
|
|
|
<view class="d-flex align-end p-y-xs justify-between bg-form-panel-3 rounded-xs p-y-sm"> |
|
|
|
|
|
|
|
|
|
|
|
<v-input type="password" v-model="form.password" class="p-x-ms color-light w-max fn-13 rounded-xs" :placeholder="$t('reg.a9')"> |
|
|
|
|
|
|
|
|
|
|
|
</v-input> |
|
|
|
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view class="form bg-panel-3 p-x-lg p-y-md"> |
|
|
<view class="form bg-panel-3 p-x-lg p-y-md"> |
|
|
<ul class="fn-md rounded-md m-y-xs line-height-2"> |
|
|
<ul class="fn-md rounded-md m-y-xs line-height-2"> |
|
|
@ -194,7 +204,8 @@ export default { |
|
|
address: "", |
|
|
address: "", |
|
|
addressType: "", |
|
|
addressType: "", |
|
|
code_type: 1, |
|
|
code_type: 1, |
|
|
code: '' |
|
|
code: '', |
|
|
|
|
|
password: '' |
|
|
}, |
|
|
}, |
|
|
withdrawFee: {}, |
|
|
withdrawFee: {}, |
|
|
list: [], |
|
|
list: [], |
|
|
@ -269,9 +280,13 @@ export default { |
|
|
this.$toast(this.$t('assets.c2')) |
|
|
this.$toast(this.$t('assets.c2')) |
|
|
return |
|
|
return |
|
|
} |
|
|
} |
|
|
|
|
|
if(!this.form.password){ |
|
|
|
|
|
this.$toast(this.$t('reg.a9')) |
|
|
|
|
|
return |
|
|
|
|
|
} |
|
|
let data = this.withdrawFee |
|
|
let data = this.withdrawFee |
|
|
if (data.withdraw_switch == 1) { |
|
|
if (data.withdraw_switch == 1) { |
|
|
this.secondaryShow = true |
|
|
this.secondaryShow = true |
|
|
if (data.google_status == 1) { |
|
|
if (data.google_status == 1) { |
|
|
this.form.code_type = 3; |
|
|
this.form.code_type = 3; |
|
|
} else if (data.phone_status == 1) { |
|
|
} else if (data.phone_status == 1) { |
|
|
|