zj
2024-06-03 cd10c1c4b723da0ae8496bf9c4f68a12e159fd97
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
<template>
  <div v-if="isShow">
    <div class="css-vp41bv">
      <div class="css-1sirj0f">
        <div class="css-tolw2i"></div>
        <div class="css-16wz1c4">
          <div class="css-hv39bs">
            <div class="css-kewrbm">
              <svg
                xmlns="http://www.w3.org/2000/svg"
                viewBox="0 0 96 96"
                fill="none"
                class="css-1udqo2t"
              >
                <path
                  fill-rule="evenodd"
                  clip-rule="evenodd"
                  d="M88 48c0 22.091-17.909 40-40 40S8 70.091 8 48 25.909 8 48 8s40 17.909 40 40z"
                  fill="url(#general-warning_svg__paint0_linear)"
                ></path>
                <path
                  d="M48 19c16.016 0 29 12.984 29 29S64.016 77 48 77 19 64.016 19 48s12.984-29 29-29z"
                  fill="url(#general-warning_svg__paint1_linear)"
                ></path>
                <path
                  d="M45 66h6v-6h-6v6zM51 54V30h-6v24h6z"
                  fill="#14151A"
                ></path>
                <defs>
                  <linearGradient
                    id="general-warning_svg__paint0_linear"
                    x1="8"
                    y1="48"
                    x2="102.5"
                    y2="48"
                    gradientUnits="userSpaceOnUse"
                  >
                    <stop stop-color="#F0B90B" stop-opacity="0"></stop>
                    <stop offset="1" stop-color="#F0B90B"></stop>
                  </linearGradient>
                  <linearGradient
                    id="general-warning_svg__paint1_linear"
                    x1="77"
                    y1="48"
                    x2="19"
                    y2="48"
                    gradientUnits="userSpaceOnUse"
                  >
                    <stop stop-color="#F0B90B"></stop>
                    <stop offset="1" stop-color="#F8D33A"></stop>
                  </linearGradient>
                </defs>
              </svg>
            </div>
            <div class="modal-desc css-1ixmqv3">
              <div class="css-rdetsy">
                {{ $t("message.user.anquanjieshao") }}
              </div>
            </div>
            <div class="btn-group css-1tr0qpm">
              <button data-bn-type="button" class="css-fzd2zp" @click="cancel">
                <div class="css-1c82c04">
                  {{ $t("message.user.quxiao") }}
                </div></button
              ><button
                data-bn-type="button"
                class="css-13s4ljd"
                @click="keepRegist"
              >
                <div class="css-1c82c04">
                  {{ $t("message.user.jixu") }}
                </div>
              </button>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</template>
<script setup>
import { useI18n } from "vue-i18n";
import { useRoute, useRouter } from "vue-router";
 
const { t } = useI18n();
 
const router = useRouter();
const isShow = ref(false);
 
const keepRegist = () => {
  router.push("/resetpwd");
};
 
const cancel = () => {
  isShow.value = false;
};
</script>
<style lang="css" scoped>
@import url("@/assets/css/login/forgotpwd.css");
</style>