吉媒互动平台前端
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.
 
 
 
 
 

26 lines
580 B

<template>
<view class="gui-wx-menu-spacing" :style="{width:width+'px'}"></view>
</template>
<script>
export default{
name : "gui-mp-menu-spacing",
props : {},
data() {
return {
width: 0
}
},
created:function(){
// #ifdef MP
// #ifndef MP-ALIPAY
let system = uni.getSystemInfoSync();
let menuButtonInfo = uni.getMenuButtonBoundingClientRect();
this.width = menuButtonInfo.width + (system.screenWidth - menuButtonInfo.right);
// #endif
// #endif
}
}
</script>
<style scoped>
.gui-wx-menu-spacing{width:80px; height:20px;}
</style>