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.
38 lines
1.2 KiB
38 lines
1.2 KiB
<template>
|
|
<uni-shadow-root class="vant-overlay-index"><van-transition :show="show" custom-class="van-overlay" :custom-style="'z-index: '+(zIndex)+'; '+(customStyle)" :duration="duration" @click.native="onClick" @touchmove.native.stop.prevent="noop">
|
|
<slot></slot>
|
|
</van-transition></uni-shadow-root>
|
|
</template>
|
|
|
|
<script>
|
|
import VanTransition from '../transition/index.vue'
|
|
global['__wxVueOptions'] = {components:{'van-transition': VanTransition}}
|
|
|
|
global['__wxRoute'] = 'vant/overlay/index'
|
|
import { VantComponent } from '../common/component';
|
|
VantComponent({
|
|
props: {
|
|
show: Boolean,
|
|
customStyle: String,
|
|
duration: {
|
|
type: null,
|
|
value: 300
|
|
},
|
|
zIndex: {
|
|
type: Number,
|
|
value: 1
|
|
}
|
|
},
|
|
methods: {
|
|
onClick() {
|
|
this.$emit('click');
|
|
},
|
|
// for prevent touchmove
|
|
noop() { }
|
|
}
|
|
});
|
|
export default global['__wxComponents']['vant/overlay/index']
|
|
</script>
|
|
<style platform="mp-weixin">
|
|
@import '../common/index.css';.van-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);background-color:var(--overlay-background-color,rgba(0,0,0,.7))}
|
|
</style>
|