|
@@ -1,6 +1,7 @@
|
1
|
1
|
<template>
|
2
|
2
|
<div class="page pg-bg pg2-2">
|
3
|
3
|
<GoBack class="goback abs" style="z-index: 100" @click="router.go(-1)" />
|
|
4
|
+ <Bell class="bell" />
|
4
|
5
|
<div class="bk-pd content" >
|
5
|
6
|
<Animate
|
6
|
7
|
class="txt"
|
|
@@ -132,7 +133,7 @@
|
132
|
133
|
<script setup>
|
133
|
134
|
import { onBeforeUnmount, onMounted, ref } from "vue";
|
134
|
135
|
import { Splide, SplideSlide, SplideTrack } from "@splidejs/vue-splide";
|
135
|
|
-import Bell from "@/components/Bell.vue";
|
|
136
|
+import Bell from "./Bell.vue";
|
136
|
137
|
import Btn from "@/components/Btn.vue";
|
137
|
138
|
import Animate from "@/components/Animate.vue";
|
138
|
139
|
import GoBack from "@/components/GoBack.vue";
|
|
@@ -165,6 +166,11 @@ const onSlideChange = (slide, newIndex) => {
|
165
|
166
|
.pg2-2 {
|
166
|
167
|
position: relative;
|
167
|
168
|
height: 100vh;
|
|
169
|
+ .bell{
|
|
170
|
+ position: absolute;
|
|
171
|
+ right: 24px;
|
|
172
|
+ top:24px;
|
|
173
|
+ }
|
168
|
174
|
.content {
|
169
|
175
|
text-align: center;
|
170
|
176
|
}
|