123456789101112131415161718192021222324252627282930 |
- <template>
- <div class="guide-container">
- <!-- <img src="/src/assets/image/gsgj.jpg" alt=""> -->
- <img src="/src/assets/image/saomiao.jpg" alt="">
- <div class="guide-container-text">请长按图片关注</div>
- </div>
- </template>
- <script setup>
- import { onMounted } from "vue";
- onMounted(() => {
- // window.location.href = 'https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=Mzg3MjExMjA4NA==&scene=126#wechat_redirect'
- })
- </script>
- <style scoped lang="scss">
- .guide-container {
- width: 100%;
- display: flex;
- padding-top: 10vh;
- align-items: center;
- flex-direction: column;
- .guide-container-text {
- font-size: 20px;
- margin-top: 20px;
- color: #999;
- }
- img {
- width: 50%;
- }
- }
- </style>
|