This commit is contained in:
18500206848
2024-02-02 14:44:30 +08:00
parent 6647042acb
commit 91172a730c
255 changed files with 24805 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
<template>
<!-- #ifdef H5 || APP-PLUS -->
<view class="jl-mask" v-if="maskShow" style="top: 44px;">
<slot></slot>
</view>
<!-- #endif -->
<!-- #ifdef MP-WEIXIN -->
<view class="jl-mask" v-if="maskShow">
<slot></slot>
</view>
<!-- #endif -->
</template>
<script>
export default{
data () {
return {
}
},
props: {
maskShow: false
},
methods:{
clear(e){
return
}
}
}
</script>
<style>
.jl-mask{
position: fixed;
top: 0;
right: 0;
left: 0;
bottom: 0;
background: rgba(0,0,0,.1);
/* overflow: auto; */
z-index: 999;
}
.maskClose{
position: absolute;
right: 100rpx;
top: 100rpx;
}
</style>