<template>
<view class="imageTop">
<image :src="url" mode="aspectFit"></image>
</view>
</template>
<style lang="scss" scoped>
.imageTop{
width: 100%;
height: 500rpx;
margin-bottom: 20rpx;
>image{
height: 100%;
}
</style>
<script>
export default {
name:"imageTop",
data(){
return {
},
props:['url']
</script>