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.
33 lines
514 B
33 lines
514 B
2 months ago
|
|
||
|
<template>
|
||
|
<view class="" style="font-size: 0;">
|
||
|
<BackButton />
|
||
|
<image class="bannerImg" mode="aspectFill" :src="showImg('/uploads/20250825/86509d1c16bd2611f7bd923caba0b648.png')"> </image>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import BackButton from "@/components/BackButton.vue";
|
||
|
export default{
|
||
|
components: {
|
||
|
BackButton,
|
||
|
},
|
||
|
data(){
|
||
|
return{
|
||
|
img:''
|
||
|
}
|
||
|
},
|
||
|
onLoad() {
|
||
|
},
|
||
|
methods:{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.bannerImg{
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
}
|
||
|
</style>
|