|
@@ -11,19 +11,19 @@
|
|
|
{{$t('userinfo.u7')}}
|
|
|
</view>
|
|
|
<view class="topF margin-b-30">
|
|
|
- <input class="FF" type="text" placeholder="请输入提币地址" v-model="address"
|
|
|
+ <input class="FF" type="text" :placeholder="$t('userinfo.u17')" v-model="address"
|
|
|
placeholder-class="placeholder-input" />
|
|
|
</view>
|
|
|
<view class="topO ">
|
|
|
- {{$t('userinfo.u8')}} <text class="font-color-gray font-size-sm">(余额:{{userWallet}})</text>
|
|
|
+ {{$t('userinfo.u8')}} <text class="font-color-gray font-size-sm">({{$t('userinfo.u19')}}:{{userWallet}})</text>
|
|
|
</view>
|
|
|
<view class="topF flex margin-b-30">
|
|
|
- <input class="FF" type="number" v-model="withdrawal" placeholder="请输入提现数量"
|
|
|
+ <input class="FF" type="number" v-model="withdrawal" :placeholder="$t('userinfo.u18')"
|
|
|
placeholder-class="placeholder-input" />
|
|
|
- <view class="btn" @click="withdrawal=userWallet">USDT 全部</view>
|
|
|
+ <view class="btn" @click="withdrawal=userWallet">USDT {{$t('userinfo.u20')}}</view>
|
|
|
</view>
|
|
|
<view class="topO ">
|
|
|
- 手续费
|
|
|
+ {{$t('userinfo.u21')}}
|
|
|
</view>
|
|
|
<view class="topF flex">
|
|
|
<text v-if="type==1">{{charge}}</text>
|
|
@@ -90,7 +90,8 @@
|
|
|
openPayPassword() {
|
|
|
if (this.userWallet < this.withdrawal) {
|
|
|
uni.showToast({
|
|
|
- title: '余额不足!',
|
|
|
+ // title: '余额不足!',
|
|
|
+ title: this.$t("userinfo.u22"),
|
|
|
icon: 'error'
|
|
|
});
|
|
|
return
|
|
@@ -120,7 +121,7 @@
|
|
|
submit() {
|
|
|
const that = this;
|
|
|
uni.showLoading({
|
|
|
- title: '提交中。。。',
|
|
|
+ title: this.$t("userinfo.u23"),
|
|
|
mask: true
|
|
|
});
|
|
|
that.loding = true;
|
|
@@ -133,14 +134,14 @@
|
|
|
that.loding = false;
|
|
|
uni.hideLoading()
|
|
|
uni.showToast({
|
|
|
- title: '申请提币成功!'
|
|
|
+ title: this.$t("userinfo.u24")
|
|
|
});
|
|
|
this.address = '';
|
|
|
this.withdrawal = ''; //提现金额
|
|
|
this.password = '';
|
|
|
}).catch((res) => {
|
|
|
uni.showToast({
|
|
|
- title: '申请提币失败!,请联系客服',
|
|
|
+ title: this.$t("userinfo.u25"),
|
|
|
icon: 'error'
|
|
|
});
|
|
|
that.loding = false;
|