裂变星小程序-25.03.04
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.
 
 
 

37 lines
666 B

<template>
<view class="page">
<navbar title="客服" leftClick @leftClick="$utils.navigateBack" />
<image class="bg" :src="imgurl" mode="scaleToFill" :show-menu-by-longpress="true"></image>
</view>
</template>
<script>
export default {
data() {
return {
imgurl: null,
}
},
onLoad() {
// todo: fetch imgurl
this.imgurl = '../../static/image/center/temp-service.png'
},
}
</script>
<style scoped lang="scss">
.page {
width: 100vw;
height: 100vh;
position: relative;
overflow: hidden;
}
.bg {
width: 100vw;
height: calc(100vh - #{$navbar-height} - var(--status-bar-height) - 20rpx);
}
</style>