46 lines
751 B
Vue
46 lines
751 B
Vue
<template>
|
|
<view v-if="shareInfoStatus" class="poster-first">
|
|
<view class="mask-share">
|
|
<image :src="webUrl+'/20230304092752891046.png'" @click="shareInfoClose"/>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<style scoped lang="less">
|
|
.poster-first {
|
|
overscroll-behavior: contain;
|
|
}
|
|
|
|
.mask-share {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 999;
|
|
}
|
|
|
|
.mask-share image {
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
<script>
|
|
export default {
|
|
name: "ShareInfo",
|
|
props: {
|
|
shareInfoStatus: Boolean
|
|
},
|
|
data: function () {
|
|
return {
|
|
webUrl: this.$VUE_APP_RESOURCES_URL
|
|
}
|
|
},
|
|
mounted: function () {
|
|
},
|
|
methods: {
|
|
shareInfoClose: function () {
|
|
this.$emit("setShareInfoStatus");
|
|
}
|
|
}
|
|
};
|
|
</script>
|