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
| <template>
| <!-- 微信内置浏览器下载引导提示 -->
| <div
| @click="closeTip"
| class="weixin-tip"
| :style="{ display: openStatus ? 'block' : 'none' }"
| >
| <div class="weixin-tip-inside">
| <img src="../../assets/images/yd.png" />
| </div>
| </div>
| </template>
| <script>
| export default {
| name: "GuideOpen",
| props: ["openStatus"],
| methods: {
| closeTip() {
| this.$emit("update:openStatus", false);
| },
| },
| };
| </script>
| <style scoped>
| .weixin-tip {
| position: fixed;
| left: 0;
| top: 0;
| bottom: 0;
| background: rgba(0, 0, 0, 0.8);
| filter: alpha(opacity=80);
| height: 100%;
| width: 100%;
| z-index: 100;
| }
| .weixin-tip-inside {
| text-align: center;
| }
| .weixin-tip-inside > img {
| width: 383px;
| height: 290px;
| margin-top: 100px;
| }
| </style>
|
|