jhzh
2026-01-04 d73b91becc044ee107b94668504f6286be00d622
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
<template>
  <div class="go_to_login animated bounce">
    <div>
      <div class="left_mess">
        <span>{{ $t("jy77") }}</span>
      </div>
      <div class="right_button">
        <div class="btn" @click="goToLogin()">
          <span>{{ $t("hj24") }}</span>
        </div>
      </div>
    </div>
  </div>
</template>
 
<script>
export default {
  name: "goLogin",
  data() {
    return {
      isShow: true
    };
  },
  methods: {
    goToLogin() {
      this.$router.push("/login");
    }
  }
};
</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: 0.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: 0.2564rem;
    font-size: 0.3846rem;
    color: #fff;
  }
  .right_button {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    > .btn {
      width: 1.7949rem;
      height: 0.7692rem;
      background: rgb(25, 122, 246);
      border-radius: 0.1064rem;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-size: 0.3615rem;
    }
  }
}
//淡入动画
@keyframes show {
  0% {
    buttom: 0rem;
  }
  100% {
    buttom: 2rem;
  }
}
</style>