index.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <view v-if="shareInfoStatus" class="poster-first">
  3. <view class="mask-share">
  4. <image src="/static/images/share-info.png" @click="shareInfoClose" @touchmove.stop.prevent="false"></image>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. // +----------------------------------------------------------------------
  10. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  11. // +----------------------------------------------------------------------
  12. // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
  13. // +----------------------------------------------------------------------
  14. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  15. // +----------------------------------------------------------------------
  16. // | Author: CRMEB Team <admin@crmeb.com>
  17. // +----------------------------------------------------------------------
  18. export default {
  19. props: {
  20. shareInfoStatus: {
  21. type: Boolean,
  22. default:false,
  23. }
  24. },
  25. data: function() {
  26. return {};
  27. },
  28. mounted: function() {},
  29. methods: {
  30. shareInfoClose: function() {
  31. this.$emit("setShareInfoStatus");
  32. }
  33. }
  34. };
  35. </script>
  36. <style scoped lang="scss">
  37. .poster-first {
  38. overscroll-behavior: contain;
  39. }
  40. .mask-share {
  41. position: fixed;
  42. top: 0;
  43. left: 0;
  44. right: 0;
  45. bottom: 0;
  46. z-index: 99;
  47. }
  48. .mask-share image {
  49. width: 100%;
  50. height:100%;
  51. }
  52. </style>