deming/pageC/components/merchant/image-top.vue
2020-08-09 18:39:35 +08:00

27 lines
427 B
Vue

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