wujingjing
2024-07-22 bc4ab46fb5c4cb4435efabfe4b316be4ace5b026
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
<template>
    <div class="layout-padding layout-link-container">
        <div class="layout-padding-auto layout-padding-view">
            <div class="layout-link-warp">
                <i class="layout-link-icon iconfont icon-xingqiu"></i>
                <div class="layout-link-msg">页面 "{{ state.title }}" 已在新窗口中打开</div>
                <el-button class="mt30" round size="default" @click="onGotoFullPage">
                    <i class="iconfont icon-lianjie"></i>
                    <span>立即前往体验</span>
                </el-button>
            </div>
        </div>
    </div>
</template>
 
<script setup lang="ts" name="layoutLinkView">
import { reactive, watch } from 'vue';
import { useRoute } from 'vue-router';
import { verifyUrl } from '/@/utils/toolsValidate';
 
// 定义变量内容
const route = useRoute();
const state = reactive<LinkViewState>({
    title: '',
    isLink: '',
});
 
// 立即前往
const onGotoFullPage = () => {
    const { origin, pathname } = window.location;
    if (verifyUrl(<string>state.isLink)) window.open(state.isLink);
    else window.open(`${origin}${pathname}#${state.isLink}`);
};
// 监听路由的变化,设置内容
watch(
    () => route.path,
    () => {
        state.title = <string>route.meta.title;
        state.isLink = <string>route.meta.isLink;
    },
    {
        immediate: true,
    }
);
</script>
 
<style scoped lang="scss">
.layout-link-container {
    .layout-link-warp {
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        i.layout-link-icon {
            position: relative;
            font-size: 100px;
            color: #409eff;
            &::after {
                content: '';
                position: absolute;
                left: 50px;
                top: 0;
                width: 15px;
                height: 100px;
                background: linear-gradient(
                    rgba(255, 255, 255, 0.01),
                    rgba(255, 255, 255, 0.01),
                    rgba(255, 255, 255, 0.01),
                    rgba(255, 255, 255, 0.05),
                    rgba(255, 255, 255, 0.05),
                    rgba(255, 255, 255, 0.05),
                    rgba(235, 255, 255, 0.5),
                    rgba(255, 255, 255, 0.05),
                    rgba(255, 255, 255, 0.05),
                    rgba(255, 255, 255, 0.05),
                    rgba(255, 255, 255, 0.01),
                    rgba(255, 255, 255, 0.01),
                    rgba(255, 255, 255, 0.01)
                );
                transform: rotate(-15deg);
                animation: toRight 5s linear infinite;
            }
        }
        .layout-link-msg {
            font-size: 12px;
            color: #606266;
            opacity: 0.7;
            margin-top: 15px;
        }
    }
}
</style>