deming/pageC/components/merchant/image-top.vue

27 lines
427 B
Vue
Raw Normal View History

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