效果图如下:
<!-- 服务组件弹窗 close:关闭事件 class:定义类(显示或隐藏) -->
<cc-serviceDialog @close="closeService" class="hidden" :class="{show:serviceFlag}"></cc-serviceDialog>
<template>
<view class="content">
<!-- 服务组件弹窗 close:关闭事件 class:定义类(显示或隐藏) -->
<cc-serviceDialog @close="closeService" class="hidden" :class="{show:serviceFlag}"></cc-serviceDialog>
<button @click="showSerivicClick" style="margin-top: 60px; width: 190px;">显示服务说明弹窗</button>
</view>
</template>
<script>
export default {
data() {
return {
serviceFlag: false,
}
},
methods: {
closeService() {
this.serviceFlag = false
},
showSerivicClick() {
this.serviceFlag = true;
},
}
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
}
.hidden {
display: none;
}
.show {
display: block;
}
</style>
手机扫一扫
移动阅读更方便
你可能感兴趣的文章