111
flowstocktrading
2022-11-02 d37bcf2111e02b806f961614c5a87deba4283aba
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
<template>
    <div class="go_to_login">
        <div>
            <div class="left_mess"><span>{{ '登录后即可开启真实/模拟交易' }}</span></div>
            <div class="right_button">
                <div class="btn" @click="goToLogin()"><span>{{ '登录' }}</span></div>
            </div>
        </div>
    </div>
</template>
 
<script>
export default {
    name: 'goLogin',
    data() {
        return {
            isShow: true,
        }
    },
    methods: {
        goToLogin() {
            this.$router.push('/newLogin')
        }
    }
}
</script>
 
<style scoped lang="less">
.go_to_login {
    width: 100%;
    height: 1.3rem;
    position: fixed;
    bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    > div {
        width: 90%;
        height: 100%;
        background: rgba(39,39,51,0.85);
        border-radius: .2228rem;
        display: flex;
        align-items: center;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
    .left_mess {
        width: 70%;
        height: 100%;
        display: flex;
        align-items: center;
        margin-left: .2564rem;
        font-size: .3846rem;
        color: #fff;
    }
    .right_button {
        width: 30%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        > .btn {
            width: 1.7949rem;
            height: .7692rem;
            background: rgb(54,124,248);
            border-radius: .1064rem;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-size: .3615rem;
        }
    }
}
 
</style>