123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <!--
- * @Author: wangwei
- * @Date: 2021-01-09 10:28:06
- * @LastEditTime: 2021-02-01 .gitignore:17:01
- * @LastEditors: Please set LastEditors
- * @Description: 首页开屏图
- * @FilePath: /java-pc/src/components/OpenScreen.vue
- -->
- <template>
- <div class="sld_open_screen">
- <div class="image">
- <img
- class="pointer"
- :src="openScreenData.imgUrl"
- @click="diyNavTo(openScreenData)"
- alt=""
- />
- <img @click="close" class="close" :src="close_layer_icon" alt="" />
- </div>
- </div>
- </template>
- <script setup>
- import { getCurrentInstance, ref } from "vue";
- const props = defineProps({
- openScreenData: Object, //装修的数据
- });
- const emit = defineEmits(['closeScreen'])
- const { proxy } = getCurrentInstance();
- const close_layer_icon = ref("/coupon/close_layer_icon.png");
- const close = () => {
- emit("closeScreen");
- };
- const diyNavTo = (val) => {
- diyNavToFun(val);
- };
- </script>
- <style lang="scss" scoped>
- .sld_open_screen {
- position: fixed;
- background: rgba(0, 0, 0, 0.4);
- width: 100%;
- height: 100%;
- left: 0;
- top: 0;
- right: 0;
- z-index: 1000;
- text-align: center;
- display: flex;
- align-items: center;
- justify-content: center;
- .image {
- width: 680px;
- height: 420px;
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- img {
- max-width: 100%;
- max-height: 100%;
- }
- }
- .close {
- position: absolute;
- width: 28px;
- height: 28px;
- top: 10px;
- right: 40px;
- z-index: 2;
- cursor: pointer;
- }
- }
- </style>
|