43 lines
1.1 KiB
Vue
43 lines
1.1 KiB
Vue
<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司(手机号:1 86 14 0 7 2 549,身份证尾号:5A07X5)专用,请尊重知识产权,勿私下传播,违者追究法律责任。-->
|
||
<template>
|
||
<view class="fui-wrap">
|
||
<view class="fui-page__hd">
|
||
<view class="fui-page__title">Backdrop</view>
|
||
<view class="fui-page__desc">Backdrop 遮罩层,在组件中设置显示蒙层。</view>
|
||
</view>
|
||
<view class="fui-page__bd">
|
||
<fui-button type="gray" btn-size="medium" text="打开遮罩层" bold :margin="['24rpx']" @click="open">
|
||
</fui-button>
|
||
</view>
|
||
<!--closable为true时click事件才生效-->
|
||
<fui-backdrop :show="show" closable @click="close"></fui-backdrop>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
show: false
|
||
}
|
||
},
|
||
methods: {
|
||
open() {
|
||
this.show = true
|
||
},
|
||
//关闭遮罩通过show进行控制
|
||
close() {
|
||
this.show = false;
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
.fui-page__bd {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
flex-direction: column;
|
||
}
|
||
</style> |