10.10综合交易所原始源码_移动端
admin
2026-01-06 42faef34194c466f03e29d75a63ae502e4213044
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
<template>
    <!-- 充值历史 -->
    <div class="pl-8 pr-8 wrap">
        <div class="text-center recharge-text ">{{ $t('数字货币') }}</div>
        <van-pull-refresh v-model="refreshing" @refresh="onRefresh" :pulling-text="$t('下拉即可刷新')"
            :loosing-text="$t('释放即可刷新')" :loading-text="$t('加载中')">
            <div>
                <div v-if='noData' class="textColor">
                    {{ $t('暂无数据') }}
                </div>
                <template v-else>
                    <van-list ref="tabs" :loading-text="$t('加载中')" v-model:loading="loading" :finished="finished"
                        :finished-text="$t('已经全部加载完毕')" :offset="130" @load="onLoad">
                        <div class="flex justify-between mb-10" v-for="(item, index) in list" :key="index"
                            @click="onDetail(item)">
                            <div>
                                <div class=" textColor">{{ item.coin }}</div>
                                <div class="text-grey mt20">{{ item.createtime }}</div>
                            </div>
                            <div>
                                <div class="text-right textColor">{{ item.amount }}</div>
                                <div class="mt20">
                                    <div class="flex justify-end" v-if="item.status == 0">
                                        <div class="common-round yellow-round"></div>
                                        <div class="text-grey ">{{ $t('确定中') }}</div>
                                    </div>
                                    <div class="flex justify-end" v-if="item.status == 1">
                                        <div class="common-round green-round"></div>
                                        <div class="text-grey ">{{ $t('成功') }}</div>
                                    </div>
                                    <div class="flex" v-if="item.status == 2">
                                        <div class="common-round red-round"></div>
                                        <div class="text-grey ">{{ $t('失败') }}</div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </van-list>
                </template>
            </div>
        </van-pull-refresh>
    </div>
</template>
 
<script>
import Axios from "@/service/recharge.js"
import { List, PullRefresh } from 'vant';
export default {
    name: "rechargeHistory",
    components: {
        [List.name]: List,
        [PullRefresh.name]: PullRefresh
    },
    data() {
        return {
            list: [],
            page: 1,
            loading: false, // 当loading为true时,转圈圈
            finished: false,  // 数据是否请求结束,结束会先显示'已经全部加载完毕'
            noData: false,// 如果没有数据,显示暂无数据
            refreshing: false,   // 下拉的加载图案
 
        }
    },
    mounted() {
        this.list = []
        // this.getList();
    },
    methods: {
        onDetail(item) { // 充值详情
            // this.$router.push('/recharge/rechargeDetail?id='+ item.order_no)
            this.$router.push('/cryptos/recharge/rechargeDetail?order_no=' + item.order_no)
        },
        getList() {
            Axios.getRechargeList({
                page_no: this.page
            }).then((res) => {
                // 如果加载完毕,显示没有更多了
                this.refreshing = false;
                if (res.length < 8) {
                    this.finished = true
                }
 
                this.loading = false;
                this.list = this.list.concat(res);
                // 如果没有数据,显示暂无数据
                if (this.list.length === 0 && this.page === 1) {
                    this.noData = true
                }
 
                this.page++;
 
            });
        },
        onLoad() {
            console.log('onLoad')
            setTimeout(() => {
                this.getList();
            }, 500)
        },
        onRefresh() {
            this.list = []
            this.page = 1
            this.loading = true
            this.finished = false
            this.noData = false
            this.onLoad()
        }
    }
}
</script>
 
<style lang="scss" scoped>
@import "./history.scss";
 
.wrap {
    font-size: 30px;
}
</style>