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.
28 lines
386 B
28 lines
386 B
<template>
|
|
<view class="img-box">
|
|
<image class="img"
|
|
src="https://eluyou.ailuquan.cn/upload/image/2024/mapIcon/daolan/guanggao2-detail.png"></image>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.img-box{
|
|
width: 100%;
|
|
height: 100vh;
|
|
|
|
.img{
|
|
width: 100%;
|
|
height: 550%;
|
|
}
|
|
}
|
|
</style>
|
|
|