27 lines
427 B
Vue
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> |