deming/pageC/components/merchant/image-top.vue
2020-08-06 17:52:25 +08:00

26 lines
410 B
Vue

<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{
width: 100%;
height: 100%;
}
}
</style>
<script>
export default {
name:"imageTop",
data(){
return {
}
},
props:['url']
}
</script>