1
jhzh
2025-06-05 f8d062b5a34443165674481f286e8bfd30cac077
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
<template>
    <div class="pb-120 assetsCenter">
        <div class="flex justify-between px-52 pt-31 pb-31 box-border">
            <div class="flex items-center text-center textColor1" style="flex-direction: column;width: 50%;"
                v-for="(item, index) in typeList " :key="'type' + index" @click="onTabs(index)">
                <div class="font-32  text-center lh-53">{{ item.type }}</div>
                <div v-if="index == tab"
                    style="width: 20px;background-color: #1976D2;height: 4px;display: flex;justify-content: center;align-items: center;">
                </div>
            </div>
        </div>
        <div v-if="tab==0">
            <over-view :funds="funds"></over-view>
            <as-sets :funds="funds"></as-sets>
        </div>
        <div v-if="tab==1">
            <div class="" style="background:rgb(25, 118, 210);padding: 15px">
                <div class="flex justify-between text-white relative">
                    <div class="flex">
                        <span class="text-white font-40">{{ $t('总资产') }}</span>
                        <div @click.stop="changeEyes">
                            <img :src="require('../../assets/image/assets-center/eye-open1.png')" style="height: 26px"
                                v-show="!eyetel" />
                            <img :src="require('../../assets/image/assets-center/eye-close1.png')" style="height: 26px"
                                v-show="eyetel" />
                        </div>
                    </div>
                    <div class="right-clock" @click="goRouter('/exchange/exchangeHistory')">
                        <img :src="require('../../assets/image/assets-center/Subtract.png')" class="w-44 h-38" />
                    </div>
                </div>
                <div style="margin-top: 10px;color: white">
                    {{$t("总资产估值")}}
                </div>
                <div class="font-700 font-50 mt-18 text-white" v-if="!eyetel">
                    {{ fundsdata.totalMoney}}
                </div>
 
                <div class="font-70 font-66 mt-18 textColor" v-else>********</div>
            </div>
            <div class="pl-33 pr-33 btn-box flex justify-between"
                style="border-bottom: #f0f0f0 1px solid;padding: 12px 10px;margin-top: 0">
                <div class="font-25  button" @click="goRouter('/recharge/rechargeList')">
                    <div class="word-wrap">
                        <!--          <img :src="require(`@/assets/theme/${theme}/image/assets/up.png`)" alt="">-->
                        <span> {{ $t('充币') }}</span>
                    </div>
                </div>
                <div class="ont-25  button" @click="goRouter('/withdraw/withdrawPage')">
                    <div class="word-wrap">
                        <!--          <img :src="require(`@/assets/theme/${theme}/image/assets/down.png`)" alt="">-->
                        <span>{{ $t('提币') }}</span>
                    </div>
                </div>
                <div class="font-25 button" @click="goRouter('/transfer')">
                    <div class="word-wrap">
                        <!--          <img :src="require(`@/assets/theme/${theme}/image/assets/l_r.png`)" alt="">-->
                        <span>{{ $t('划转') }}</span>
                    </div>
                </div>
            </div>
            <div
                style="display: flex;margin-bottom: 0px;flex-direction: column;border-bottom: 2px solid rgb(241, 241, 241); padding: 10px;">
                <div style="margin: 20px;color: rgba(25, 118, 210, 0.8);font-size: 18px;font-weight: bold;">USDT</div>
                <div style="display: flex;justify-content: space-between;margin: 0 20px 20px 20px;">
                    <div style="display: flex;justify-content: space-between;flex-direction: column;">
                        <div class="text-grey" style="font-weight: normal">{{ $t('可用') }}</div>
                        <div class="textColor" style="font-weight: normal;font-size: 16px;color: #999999">
                            {{fundsdata.usdtMoney}}
                        </div>
                    </div>
                    <div style="display: flex;justify-content: space-between;flex-direction: column;">
                        <div class="text-grey" style="font-weight: normal">{{ $t('锁仓') }}</div>
                        <div class="textColor" style="font-weight: normal;font-size: 16px;color: #999999">
                            0.00
                        </div>
                    </div>
                    <div style="display: flex;justify-content: space-between;flex-direction: column;">
                        <div class="text-grey" style="font-weight: normal">{{ $t('冻结') }}</div>
                        <div class="textColor" style="font-weight: normal;font-size: 16px;color: #999999">
                            0.00
                        </div>
                    </div>
                </div>
            </div>
            <div
                style="display: flex;margin-bottom: 0px;flex-direction: column;border-bottom: 2px solid rgb(241, 241, 241); padding: 10px;">
                <div style="margin: 20px;color: rgba(25, 118, 210, 0.8);font-size: 18px;font-weight: bold;">ETH</div>
                <div style="display: flex;justify-content: space-between;margin: 0 20px 20px 20px;">
                    <div style="display: flex;justify-content: space-between;flex-direction: column;">
                        <div class="text-grey" style="font-weight: normal">{{ $t('可用') }}</div>
                        <div class="textColor" style="font-weight: normal;font-size: 16px;color: #999999">
                            {{fundsdata.ethMoney}}
                        </div>
                    </div>
                    <div style="display: flex;justify-content: space-between;flex-direction: column;">
                        <div class="text-grey" style="font-weight: normal">{{ $t('锁仓') }}</div>
                        <div class="textColor" style="font-weight: normal;font-size: 16px;color: #999999">
                            0.00
                        </div>
                    </div>
                    <div style="display: flex;justify-content: space-between;flex-direction: column;">
                        <div class="text-grey" style="font-weight: normal">{{ $t('冻结') }}</div>
                        <div class="textColor" style="font-weight: normal;font-size: 16px;color: #999999">
                            0.00
                        </div>
                    </div>
                </div>
            </div>
            <div
                style="display: flex;margin-bottom: 0px;flex-direction: column;border-bottom: 2px solid rgb(241, 241, 241); padding: 10px;">
                <div style="margin: 20px;color: rgba(25, 118, 210, 0.8);font-size: 18px;font-weight: bold;">BTC</div>
                <div style="display: flex;justify-content: space-between;margin: 0 20px 20px 20px;">
                    <div style="display: flex;justify-content: space-between;flex-direction: column;">
                        <div class="text-grey" style="font-weight: normal">{{ $t('可用') }}</div>
                        <div class="textColor" style="font-weight: normal;font-size: 16px;color: #999999">
                            {{fundsdata.btcMoney}}
                        </div>
                    </div>
                    <div style="display: flex;justify-content: space-between;flex-direction: column;">
                        <div class="text-grey" style="font-weight: normal">{{ $t('锁仓') }}</div>
                        <div class="textColor" style="font-weight: normal;font-size: 16px;color: #999999">
                            0.00
                        </div>
                    </div>
                    <div style="display: flex;justify-content: space-between;flex-direction: column;">
                        <div class="text-grey" style="font-weight: normal">{{ $t('冻结') }}</div>
                        <div class="textColor" style="font-weight: normal;font-size: 16px;color: #999999">
                            0.00
                        </div>
                    </div>
                </div>
            </div>
        </div>
 
 
 
    </div>
</template>
 
<script>
    import AsSets from "@/components/assetsCenter/assets"
    import OverView from "@/components/assetsCenter/overview"
    import Contract from "@/components/assetsCenter/contract"
    import Financial from "@/components/assetsCenter/financial"
    import Axios from "@/API/assets"
    export default {
        name: "assets-index",
        components: {
            AsSets,
            OverView,
            Contract,
            Financial
        },
        data() {
            return {
                type: 'left', //left 从左往右 right 从有王座
                list: [],
                eyetel: false,
                timer: null,
                zjlist: [],
                tab: 0,
                index: 0, // 每个组件的二级tab
                funds: {},
                fundsdata: {},
                typeList: [{
                        type: this.$t('交易')+this.$t('账户'),
                    },
                    {
                        type: this.$t('资金账户'),
                    },
                ]
            }
        },
        methods: {
            goRouter(parmas) {
              if (parmas === '/exchange/exchangeHistory') {
                this.$router.push({ path: parmas, query: { type: 0 } })
              } else {
                this.$router.push(parmas);
              }
            },
            changeEyes() {
                this.eyetel = !this.eyetel;
            },
            onTabs(val) {
                console.log('111',val);
                this.tab = val
            },
            getAssetszj() {
                Axios.GetWalletzj().then((res) => {
                    this.fundsdata = res.data
                })
 
            },
            getAssets() {
                Axios.GetAllAssets().then((res) => {
                    const {
                        code,
                        data
                    } = res
                    if (code) {
                        //console.log('总资产数据',data)
                        this.funds = data
                    }
                })
            },
        },
        created() {
            this.getAssets()
            this.getAssetszj()
            this.timer = setInterval(() => {
                this.getAssets()
            }, 5000)
            if (Object.hasOwnProperty.call(this.$route.query, 'tab')) {
                this.tab = this.$route.query.tab / 1
                this.index = this.$route.query.index ? this.$route.query.index * 1 : 0
            }
        },
        activated() {
            clearInterval(this.timer)
            this.timer = setInterval(() => {
                this.getAssets()
            }, 5000)
            this.index = 0
        },
        deactivated() {
            clearInterval(this.timer)
            this.timer = null
        },
        beforeDestroy() {
            clearInterval(this.timer)
            this.timer = null
        }
    }
</script>
 
<style lang="scss" scoped>
    .tabBackground {
        background: white;
    }
 
    .button {
        border: 1px solid rgb(25, 118, 210);
        background: white !important;
        border-radius: 3px;
        height: 60px;
        color: rgb(25, 118, 210) !important;
    }
 
    .right-clock {
        position: absolute;
        top: 0;
        right: -3px;
    }
 
    .total_wrap {
        margin-top: 44px;
    }
 
    .asset-title-box {
        margin: 40px 0;
    }
 
    .btn-box {
        margin-top: 44px;
    }
 
    .btn-box>div {
        width: 234px;
        padding: 20px 15px;
        box-sizing: border-box;
        text-align: center;
        border-radius: 8.8px;
        font-size: 26.5px;
        display: flex;
        justify-content: center;
        align-items: center;
 
        .word-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
 
            img {
                width: 40px;
                height: 40px;
                margin-right: 22px;
            }
 
            span {
                font-size: 26.5px;
            }
        }
    }
 
    .mr60 {
        margin-right: 60px;
    }
 
    .divider-line {
        border-bottom: 1px solid #E5E7ED;
        padding-bottom: 80px;
    }
 
    .assets-content-title {
        margin-top: 60px;
        margin-bottom: 55px;
    }
 
    .assets-list {
        margin-bottom: 35px;
    }
 
    .assets-list>div {
        display: flex;
    }
 
    .assets-list>div:nth-child(2) div:nth-child(1) {
        margin-bottom: 16px;
        font-size: 30px;
        font-weight: 700;
    }
 
    .symbol-name {
        margin-left: 17px;
        //margin-top:10px;
    }
 
    .assetsCenter {
        width: 100%;
        box-sizing: border-box;
    }
 
    .active_color {
        @include themify() {
            border-bottom: 5px solid themed("color_main") !important;
        }
 
        border-radius: 2.208px;
    }
 
    .left-enter-active,
    .left-leave-active,
    .right-enter-active,
    .right-leave-active {
        will-change: transform;
        transition: all 500ms;
    }
 
    .left-leave-active,
    .right-leave-active {
        display: none;
    }
 
    .left-enter {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
 
    .left-leave {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
 
    .right-enter {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
 
    .right-leave {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
</style>