|
|
|
@ -52,7 +52,7 @@ |
|
|
|
</view> |
|
|
|
<view class="p-x-lg d-flex justify-between flex-wrap align-center p-y-xs"> |
|
|
|
<view class="color-light d-block w-max m-y-ms color-light fn-15">{{ $t("assets.b8") }}</view> |
|
|
|
<v-input v-model="form.address" class="bg-form-panel-3 p-sm color-light w-max fn-13 rounded-xs" |
|
|
|
<v-input v-model="form.address" class="bg-form-panel-3 p-y-sm color-light w-max fn-13 rounded-xs" |
|
|
|
:placeholder="$t('assets.b9')"> |
|
|
|
<!--<template #right>--> |
|
|
|
<!-- <!– #ifdef H5 –>--> |
|
|
|
@ -78,13 +78,13 @@ |
|
|
|
<span>{{ $t("assets.c1") }}:{{ withdrawFee.usable_balance }} |
|
|
|
{{ coin }}</span> |
|
|
|
</view> |
|
|
|
<view class="d-flex align-end p-y-xs justify-between bg-form-panel-3 rounded-xs p-sm p-x-ms"> |
|
|
|
<view class="d-flex align-center justify-between bg-form-panel-3 rounded-xs p-y-sm"> |
|
|
|
<v-input type="number" v-model="form.amount" :min="withdrawFee.withdrawal_min" |
|
|
|
:max="withdrawFee.withdrawal_max" class=" w-8/12 color-light fn-13" |
|
|
|
:placeholder="$t('assets.c2')"></v-input> |
|
|
|
<view class="d-flex align-end"> |
|
|
|
<span class="unit fn-16 flex-shrink">{{ coin }}</span> |
|
|
|
<view class="all color-theme-1 m-l-md flex-shrink" @click="form.amount = withdrawFee.usable_balance"> |
|
|
|
<view class="all color-light m-l-md flex-shrink" @click="form.amount = withdrawFee.usable_balance"> |
|
|
|
{{ $t("assets.c3") }} |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
@ -100,9 +100,9 @@ |
|
|
|
<view class="d-flex align-end p-y-xs justify-between bg-form-panel-3 rounded-xs p-y-sm"> |
|
|
|
|
|
|
|
<v-input v-model="coin=='USDT'&&rechargeType==3?withdrawFee.trc20:withdrawFee.withdrawal_fee" disabled |
|
|
|
class="p-x-ms color-light w-max fn-13 rounded-xs" :placeholder="$t('assets.b9')"> |
|
|
|
class="color-light w-max fn-13 rounded-xs" :placeholder="$t('assets.b9')"> |
|
|
|
<template #right> |
|
|
|
{{ coin }} |
|
|
|
<view class="all color-light m-l-xs flex-shrink fn-12">{{ coin }}</view> |
|
|
|
</template> |
|
|
|
</v-input> |
|
|
|
</view> |
|
|
|
@ -112,7 +112,7 @@ |
|
|
|
</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 type="password" v-model="form.password" class="color-light w-max fn-13 rounded-xs" :placeholder="$t('reg.a9')"> |
|
|
|
|
|
|
|
</v-input> |
|
|
|
</view> |
|
|
|
@ -131,11 +131,11 @@ |
|
|
|
<view class="d-flex align-center p-y-xs m-t-ms justify-between color-light fn-15"> |
|
|
|
<span>{{ $t("safe.a5") }}:</span> |
|
|
|
</view> |
|
|
|
<view class="d-flex align-end p-y-xs justify-between bg-form-panel-3 rounded-xs p-sm p-x-ms"> |
|
|
|
<view class="d-flex align-center justify-between bg-form-panel-3 rounded-xs p-y-sm"> |
|
|
|
<v-input type="text" v-model="form.emailcode" class=" w-8/12 color-light fn-13" |
|
|
|
:placeholder="$t('safe.a6')"></v-input> |
|
|
|
<view class="d-flex align-end"> |
|
|
|
<view class="all color-theme-1 m-l-md flex-shrink" @click="getEmailCode"> |
|
|
|
<view class="all color-light m-l-md flex-shrink fn-12" @click="getEmailCode"> |
|
|
|
<text v-if="!getEmailCodeLock">{{ $t("common.getCode") }}</text> |
|
|
|
<text v-else>{{ daojishi }}</text> |
|
|
|
</view> |
|
|
|
@ -535,7 +535,8 @@ export default { |
|
|
|
} |
|
|
|
|
|
|
|
.border-b { |
|
|
|
border-bottom: 5px solid $panel-3; |
|
|
|
// border-bottom: 5px solid $panel-3; |
|
|
|
border-bottom: 5px solid #242424; |
|
|
|
} |
|
|
|
|
|
|
|
.autowidth { |
|
|
|
@ -554,4 +555,10 @@ export default { |
|
|
|
position: fixed; |
|
|
|
bottom: 0; |
|
|
|
} |
|
|
|
.bg-panel-3{ |
|
|
|
background-color: #121212; |
|
|
|
} |
|
|
|
.bg-form-panel-3{ |
|
|
|
background-color: #121212; |
|
|
|
} |
|
|
|
</style> |
|
|
|
|