You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
586 B
33 lines
586 B
<template>
|
|
<div :class="{ 'operation-guide': visible }" @click="guideClick"></div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
visible: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
methods: {
|
|
guideClick() {
|
|
this.$emit("update:visible", false);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.operation-guide {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 6;
|
|
background: rgba(0, 0, 0, 0.6)
|
|
url(getAssetsPath("/wap/first/zsff/images/question_guide.png")) center bottom/623rpx
|
|
826rpx no-repeat;
|
|
}
|
|
</style>
|
|
|