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
<template>
<div class="noWechat-page">
<img :src="noUrl"/>
<div class="text-block">
<div class="title">
请在微信中打开链接
</div>
您可以复制链接后,粘贴到微信任意对话框,
<br>
或发送给微信中的任意好友,
<br>
点击链接即可查看哦~
</div>
</div>
</template>
<script>
import noUrl from '../assets/no.png'
export default {
name: "noWechat",
data(){
return {
noUrl:noUrl
}
}
}
</script>
<style scoped lang="less">
@import "../util/public";
.noWechat-page{
img{
width: 70%;
}
text-align: center;
font-size: 18px;
.text-block{
.title{
font-size: 30*@toVw;
margin-bottom: 10*@toVw;
}
font-size: 14*@toVw;
}
}
</style>