12345678910111213141516171819202122232425 |
- <template>
- <div class="pop"><span></span><img style="padding-right: 40px" src="~/assets/image/activity/invite-user/invite-new-user/wx-pop-tpis.png" alt="请在浏览器中打开"></div>
- </template>
- <script>
- export default {
- name: 'NonWxPopTips',
- }
- </script>
- <style lang="scss" scoped>
- .pop {
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0;
- left: 0;
- background: rgba(0,0,0,.7);
- z-index: 999;
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- overflow: hidden;
- }
- </style>
|