2
李凌
2025-09-08 e6121cda1d608cf2441b19d76d1615967871e74f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
<template>
    <div class="withdrawl-page">
        <assets-head title="">
            <img src="../../assets/image/assets-center/exchange.png" alt="exchange-img" class="w-44 h-38"
                @click="goRouter('/assetsCenter/rechargeWithdrawRecord?back=1')" />
        </assets-head>
        <div class="px-32 pb-48">
            <!--<h1 class="font-52 pt-40 textColor">{{ $t('提币') }} USDT</h1>-->
            <h1 class="font-52 pt-40 textColor">{{ $t('提币 ') + value }} </h1>
            <!--<p class="text-grey font-30 mt-26">{{ $t('提币 USDT 到数字币地址') }}</p>-->
            <p class="text-grey font-30 mt-26">{{ $t('提币 ') + value + $t(' 到数字币地址') }}</p>
            <div @click="showSymbol = true"
                class="flex border-grey items-center items-center justify-between rounded-lg mt-42 inputBackground textColor">
                <input v-model="value" class="flex-1 h-100 border-none px-16 inputBackground textColor" />
                <p class="flex items-center">
                    <span>{{ $t('选择币种') }}</span>
                    <img src="@/assets/image/icon-left_arrow.png" alt="logo" class="w-20 h-33 ml-30 mr-40"
                        style="transform: rotate(-90deg)" />
                </p>
            </div>
            <p class="font-35 mt-44 textColor">{{ $t('区块链网络') }}</p>
            <ul class="flex mt-22  flex-wrap">
                <li class="w-210 h-96 mb-20 mr-40 rounded rounded-lg border border-solid flex justify-center items-center textColor"
                    :class="blockchainIndex == index ? 'active' : ''" v-for="(item, index) in blockList" :key="item.id"
                    @click="changeBlockchain(item, index)">{{ item.blockchain_name }}</li>
            </ul>
            <p class="font-35 mt-22 textColor">{{ $t('地址') }}</p>
            <div class="inputBackground flex items-center justify-between h-96 rounded mt-22">
                <input :placeholder="$t('长按粘贴')" class="h-full flex-1 border-none bg-none px-16 textColor"
                    v-model="address" />
                <div class="flex items-center">
                    <span class="colorMain" @click="pastCont">{{ $t('粘贴') }}</span>
                    <div>
                        <img @click="clickCode()" src="@/assets/image/public/scan.png" alt="logo"
                            class="w-65 h-65 ml-20 mr-30" />
                    </div>
                </div>
            </div>
            <p class="font-35 mt-44 textColor">{{ $t('数量') }}</p>
            <div class="inputBackground flex items-center justify-between h-96 rounded mt-22">
                <input :placeholder="$t('请输入提币数量')" maxlength="10"
                    class="h-full flex-1 border-none bg-none px-16 font-22 textColor" type="number" v-model="amount"
                    @input="changeInput" />
                <p class="flex items-center">
                    <!--<span class="text-grey">USDT</span>-->
                    <span class="text-grey">{{ value }}</span>
                    <span class="colorMain ml-20 mr-30" @click="allBtn">{{ $t('全部') }}</span>
                </p>
            </div>
            <p class="flex justify-between text-grey mt-22">
                <span>{{ $t('可用') }}</span>
                <!--<span>{{ usdtBalance }} USDT</span>-->
                <span>{{ getwei(usdtBalance * 1, numLenth) }} {{ value }}</span>
            </p>
            <p class="text-grey mt-64">{{ $t('可到账数量') }}</p>
            <div class="font-40 mt-20 fon-bold ">
                <span class="font-40 font-700 textColor"> {{ volume_last || '0.00' }}</span>
                <!--<span class="font-32 ml-5 text-grey">USDT</span>-->
                <span class="font-32 ml-5 text-grey">{{ value }}</span>
            </div>
            <p class="text-grey mt-22">{{ $t('提现费用') }}:{{ fee || '0.00' }} {{ value }}</p>
            <p class="text-black mt-46 textColor">{{ $t('提币说明') }}:
            </p>
            <div class="text-grey mt-10" v-html="tip"></div>
            <van-button class="w-768 h-100 rounded flex justify-center items-center mt-56  text-white btnMain border-none"
                @click="showDetail">
                {{ $t('提现') }}</van-button>
 
        </div>
        <van-popup v-model="show" position="bottom">
            <div class="pop-box relative">
                <img src="@/assets/image/icon-close.png" class="w-38 h-38 absolute right-20 top-20" @click="show = false" />
                <p class="font-38 text-center pt-60 textColor">{{ $t('确认订单') }}</p>
                <p class="font-35 mt-49 text-grey text-center">{{ $t('实际到账') }}</p>
                <p class="font-50 mt-23 text-center textColor">{{ volume_last }} <span class="text-grey font-35">
                        {{ value }}</span></p>
                <ul class="border-b-color px-32 pb-34">
                    <li class="flex justify-between font-32 mt-25 items-center">
                        <span class="textColor">{{ $t('提币地址') }}</span>
                        <span class="text-grey font-26">{{ address }}</span>
                    </li>
                    <li class="flex justify-between font-32 mt-25">
                        <span class="textColor">{{ $t('主网络') }}</span>
                        <span class="text-grey">{{ blockName }}</span>
                    </li>
                    <li class="flex justify-between font-32 mt-25">
                        <span class="textColor">{{ $t('提现来源账户') }}</span>
                        <span class="text-grey">{{ $t('钱包账户') }}</span>
                    </li>
                </ul>
                <ul class="px-32 mt-32">
                    <li class="flex justify-between font-32 mt-25">
                        <span class="textColor">{{ $t('币种') }}</span>
                        <span class="text-grey">{{ value }}</span>
                    </li>
                    <li class="flex justify-between font-32 mt-25">
                        <span class="textColor">{{ $t('金额') }}</span>
                        <span class="text-grey">{{ amount }}&nbsp;{{ value }}</span>
                    </li>
                    <li class="flex justify-between font-32 mt-25">
                        <span class="textColor">{{ $t('网络手续费') }}</span>
                        <span class="text-grey">{{ fee }}&nbsp;{{ value }}</span>
                    </li>
                </ul>
                <p class="px-32 mt-49 font-30 textColor">
                    1. {{ $t('请确保您输入了正确的提币地址并且您选择的转账网络与地址相匹配') }}
                </p>
                <p class="px-32 mt-40 font-30 textColor">2. {{ $t('提币订单创建后不可取消。') }}</p>
                <p class="w-768 h-100 rounded flex justify-center items-center mt-56 mb-48 btnMain text-white ml-32"
                    @click="onConfirm">
                    {{ $t('确定') }}</p>
            </div>
        </van-popup>
        <!-- 币种 -->
        <van-action-sheet v-model="showSymbol" :actions="actions.filter(item => item.name !== value)" @select="onSelect" />
        <bar-scan :scancode="scancode" v-if="scancode" @ok="getResult"></bar-scan>
    </div>
</template>
 
<script>
import { Popup, ActionSheet, Toast, Dialog } from "vant"
import Axios from "@/service/recharge.js"
import AxiosWithdraw from "@/service/withdraw.js"
import assetsHead from "@/components/assets-head";
import BarScan from '@/components/scan/scan.vue';
import { _getAllWallet } from "@/service/fund.api";
import AxiosUser from "@/service/userCenter";
import { mapGetters } from "vuex";
export default {
    name: "withdrawPage",
    components: {
        assetsHead,
        [Popup.name]: Popup,
        [ActionSheet.name]: ActionSheet,
        BarScan
    },
    data() {
        return {
            tip: '',
            value: 'USDT', //选中的币种
            show: false,
            showSymbol: false,
            actions: [{ name: 'USDT' }, { name: 'BTC' }, { name: 'ETH' }],
            blockList: [],
            blockchainIndex: "",
            usdtBalance: "", //余额
            amount: "",//提现金额
            fee: "", //手续费
            volume_last: "",//到账金额
            blockName: "",//当前链名称
            address: "",// 二维码扫描结果
            scancode: false,//控制是否使用扫一扫功能
            withdraw_fee_type: '',
            percent: 0,
            numLenth: 3
        }
    },
    computed: {
        ...mapGetters('user', ['userInfo'])
    },
    created() {
        AxiosUser._getIsGoogleAuth({ code: 'google_auth_secret_open' }).then(res => {
            let isGetdata
            if (res.data.google_auth_secret_open === '1') {
                // if (this.userInfo.googleverif) {
                    isGetdata = true
                // } else {
                //     Dialog({
                //         message: this.$t('未绑定谷歌验证器,暂时无法提现,点击前往绑定'),
                //         theme: 'round-button',
                //         confirmButtonColor: '#2C78F8',
                //         confirmButtonText: this.$t('确定'),
                //     }).then(() => {
                //         this.$router.replace('/bindVerify?type=3')
                //         // on close
                //     });
                //     isGetdata = false
                // }
            } else {
                isGetdata = true
            }
            if (isGetdata) {
                this.getBlock(this.value);
                this.getAvailable(this.actions[0].name);
 
 
                Axios.getRechargeTips({
                    language: this.$i18n.locale,
                    token: this.$store.state.user.userInfo.token,
                    content_code: '003',
                }).then(res => {
                    this.tip = res.data.content
                }).catch(err => {
                    if (err.code === 'ECONNABORTED') { this.$toast(this.$t('网络超时!')); }
                    else if (err.msg !== undefined) { this.$toast(this.$t(err.msg)); }
                })
                AxiosWithdraw.WithdrawFee({
                    amount: 1,
                    channel: this.value + '_' + this.blockName
                }).then((res) => {
                    this.withdraw_fee_type = res.data.withdraw_fee_type
                    if (this.withdraw_fee_type == 'rate') {
                        this.percent = res.data.fee
                    } else {
                        this.fee = res.data.fee;
                    }
                });
            }
        })
    },
    methods: {
        getwei(value, numLenth) {
            console.log(numLenth)
            let str = value.toString();
            let strIndex = str.indexOf('.');
            if (strIndex === -1) return str;
            str = str.substring(0, strIndex + numLenth);
            console.log(str, numLenth)
            return str;
        },
        // 打开相机
        clickCode() {
            this.scancode = true;
        },
        //返回扫描结果并关闭摄像头
        getResult(result) {
            this.address = result;
            if (result !== "") {
                this.scancode = false;
            }
        },
        showDetail() {
            if (this.address.length > 63 || this.address.length == 0) {
                Toast(this.$t('提现地址格式错误'))
                return
            }
            if (!this.amount) {
                Toast(this.$t('请输入正确数量'))
                return
            }
            if (this.amount / 1 > this.usdtBalance / 1) {
                Toast(this.$t('金额不足'))
                return
            }
            this.show = true;
        },
        goRouter(params) {
            this.$router.push({
                path: params,
                query: {
                    type: '2'
                }
            });
        },
        // onConfirm() {
        //     this.$router.push('/withdraw/withdrawSumbit')
        // },
        //选中币种
        onSelect(item) {
            this.amount = ''
            this.volume_last = ''
            this.fee = ''
            this.showSymbol = false;
            this.value = item.name;
            this.withdraw_fee_type = ''
            this.getBlock(item.name);
            this.getAvailable(item.name)
            if (item.name == 'BTC' || item.name == 'ETH') {
                this.numLenth = 7
                AxiosWithdraw.WithdrawFee({
                    amount: 1,
                    channel: this.value + '_' + this.blockName
                }).then((res) => {
                    this.withdraw_fee_type = res.data.withdraw_fee_type
                    if (this.withdraw_fee_type == 'fixed') {
                        this.fee = res.data.fee;
                    } else {
                        this.percent = res.data.fee
                    }
                });
            } else {
                this.numLenth = 3
            }
        },
        //根据币种获取链地址
        getBlock(symbol) {
            Axios.getBlock({
                coin: symbol
            }).then((res) => {
                this.blockList = res.data;
                this.blockName = res.data[0].blockchain_name;
            });
        },
        //选中链名称
        changeBlockchain(item, index) {
            this.blockchainIndex = index;
            this.blockName = item.blockchain_name;
        },
        //获取钱包余额
        getAvailable(symbol) {
            _getAllWallet().then((res) => {
                let walletList = res.extends;
                let initObj = walletList.find(item => {
                    return item.symbol.toLowerCase() == symbol.toLowerCase()
                })
                this.usdtBalance = initObj.usable
            });
        },
        //点全部
        allBtn() {
            this.amount = this.getwei(this.usdtBalance, this.numLenth);
            this.changeInput()
        },
        //输入改变
        changeInput() {
            if (this.amount === '') {
                this.volume_last = '0.00'
                return
            }
            if (this.amount.length > 11) {
                this.amount = this.amount.slice(0, 11)
            }
 
            if (this.withdraw_fee_type == 'part') {
                AxiosWithdraw.WithdrawFee({
                    amount: this.amount,
                    channel: this.value + '_' + this.blockName
                }).then((res) => {
                    this.fee = res.data.fee;
                    this.volume_last = res.data.volume_last;
                });
            } else if (this.withdraw_fee_type == 'rate') {
                if (this.amount == '') {
                    this.volume_last = 0
                } else {
                    this.fee = this.getwei(this.percent * this.amount, this.numLenth)
                    this.volume_last = this.getwei(this.amount * 1 - this.percent * this.amount, this.numLenth)
                }
            } else {
                if (this.amount * 1 < this.fee * 1) {
                    console.log('a')
                    this.volume_last = 0
                } else {
                    this.volume_last = this.getwei(this.amount * 1 - this.fee * 1, this.numLenth)
                }
            }
 
        },
        //提币提交
        onConfirm() {
            if (!this.amount) {
                this.$toast(this.$t('请输入数量'));
                return;
            }
 
            let numReg = /^[0-9]+([.]{1}[0-9]+){0,1}$/;
            if (!numReg.test(this.amount)) {
                this.$toast(this.$t('请输入数字'));
                return;
            }
 
            if (!this.address) {
                this.$toast(this.$t('请输入提现地址'));
                return;
            }
 
            if (this.amount && this.address) {
                this.$router.push({
                    path: '/withdraw/securityVerification',
                    query: {
                        amount: this.amount,
                        from: this.address,
                        channel: this.value + '_' + this.blockName
                    }
                })
                // AxiosWithdraw.WithdrawApply({
                //     session_token:this.sessionToken,
                //     amount:this.amount,
                //     from:this.address,
                //     channel:this.value+'_'+ this.blockName
                // }).then((res)=> {
                //     if(res.code==0) {
                //         this.$router.push({
                //             path:"/withdraw/withdrawSumbit"
                //         });
                //     }else{
                //       this.$toast(this.$t(res.msg));
                //     }
                //     this.getToken();
                // });
            } else {
                this.$toast(this.$t('请输入提币数量'));
            }
        },
        async pastCont() {
            this.address = await navigator.clipboard.readText();
        }
    }
}
</script>
<style>
.withdrawl-page {
    width: 100%;
    box-sizing: border-box;
    font-size: 26px;
}
 
.van-popup.van-popup--bottom {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
</style>
<style lang="scss" scoped>
.pop-box {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
 
.color-blue {
    color: #2C78F8;
}
 
.bg-grey-light {
    background: #F5F5F5;
}
 
li {
    &.active {
        @include themify() {
            border-color: themed("color_main");
        }
 
        @include themify() {
            color: themed("color_main");
        }
    }
}
 
.van-button--default {
    color: #fff;
}
</style>