lxf
2025-07-16 8588fe30f17d0d28190a279aab8675de0dbf1a5b
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
<template>
    <div id="cryptos">
        <van-popup :value="value" @input="val => this.$emit('input', val)" round :closeable="true">
            <div class="font-40 textColor mb-54 text-center">{{ $t('规则说明') }}</div>
            <div class="mb-32">
                <div class="font-32 flex justify-between">
                    <span class="textColor">{{ $t('规则说明') }}</span>
                    <span class="skyColor">75%</span>
                </div>
                <div class="text-grey font-28 mt-12">{{ $t('可借金额等于质押金额*初始质押率') }}</div>
            </div>
            <div class="mb-32">
                <div class="font-32 flex justify-between">
                    <span class="textColor">{{ $t('补仓质押率') }}</span>
                    <span class="skyColor">60%</span>
                </div>
                <div class="text-grey font-28 mt-12">
                    {{ $t('(订单借贷资产+累计利息)转化为质押资产价格/质押资产价值≥60%,系统会提醒您补充质押资产或提前还款*初始质押率') }}
                </div>
            </div>
            <div class="mb-32">
                <div class="font-32 flex justify-between">
                    <span class="textColor">{{ $t('平仓质押率') }}</span>
                    <span class="skyColor">85%</span>
                </div>
                <div class="text-grey font-28 mt-12">
                    {{ $t('(订单借贷资产+累计利息)转化为质押资产价格/质押资产价值≥85%,系统会自动卖出/扣除抵押资产以尝还到款。请及时补充抵押资金') }}
                </div>
            </div>
            <div class="mb-32">
                <div class="font-32 flex justify-between">
                    <span class="textColor">{{ $t('利率费用') }}</span>
                    <span class="skyColor"></span>
                </div>
                <div class="text-grey font-28 mt-12">{{ $t('小时利率0.2%;日利率4.8%;提前还贷手续费,到款以小时计算,不足1小时按1小时计算') }}</div>
            </div>
        </van-popup>
    </div>
</template>
 
<script>
import { Popup } from "vant";
export default {
    props: {
        value: {
            type: Boolean,
            default: false,
        },
    },
    components: {
        [Popup.name]: Popup,
    },
}
</script>
 
<style lang="scss" scoped>
@import "@/assets/init.scss";
#cryptos {
    .van-popup {
        width: 700px;
        padding: 38px 32px 64px 32px;
    }
 
    .skyColor {
        color: #13D3EB;
    }
}
</style>