前端Vue自定义服务说明弹窗弹框 自下而上底部弹框, 请访问uni-app插件市场地址:https://ext.dcloud.net.cn/plugin?id=13108
效果图如下:
cc-serviceDialog 自定义服务说明弹窗 自下而上 底部弹窗
使用方法
<!-- 服务组件弹窗 close:关闭事件 class:定义类(显示或隐藏) -->
<cc-serviceDialog @close="closeService" class="hidden" :class="{show:serviceFlag}"></cc-serviceDialog>
HTML代码实现部分
<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>
标签:Vue,自定义,弹框,serviceFlag,display,弹窗
From: https://www.cnblogs.com/ccVue/p/17492729.html