maskLayer.vue
766 Bytes
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
<template>
<div class="mask-layer-box ig-all" v-if="isShow && maskLayers && maskLayers.img" @click="hideLayer">
<img :src="maskLayers.img" class="img" />
</div>
</template>
<script>
export default {
data: function () {
return {
isShow: false
}
},
props: ["maskLayers"],
methods: {
/**
* 显示提示用户升级层
*/
showLayer() {
// 设置浮层显示
this.isShow = true;
},
/**
* 隐藏提示用户升级层
*/
hideLayer() {
// 设置浮层隐藏
this.isShow = false;
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style rel="stylesheet/less" lang="less" scoped>
@import './mask_layer';
</style>