<template>
<view class="bg" :style="{ height: maxHeight }"> </view>
</template>
<script>
export default {
onLoad() {
let systemInfo = uni.getSystemInfoSync();
this.maxHeight = systemInfo.windowHeight + "px";
},
};
</script>
.bg {
position: relative;
background-image: url("https://file.demo.com/demo.png");
background-repeat: no-repeat;
background-size: 100% 100%;
width: 100vw;
}
1万+

被折叠的 条评论
为什么被折叠?



