WxPopTpis.vue 495 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div class="pop"><span></span><img src="~/assets/image/activity/invite-user/invite-new-user/wx-pop-tpis.png" alt="请在浏览器中打开"></div>
  3. </template>
  4. <script>
  5. export default {
  6. name: 'NonWxPopTips',
  7. }
  8. </script>
  9. <style lang="scss" scoped>
  10. .pop {
  11. width: 100%;
  12. height: 100%;
  13. position: fixed;
  14. top: 0;
  15. left: 0;
  16. background: rgba(0,0,0,.7);
  17. z-index: 999;
  18. display: flex;
  19. justify-content: space-between;
  20. align-items: flex-start;
  21. overflow: hidden;
  22. }
  23. </style>