You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
553 B
39 lines
553 B
10 months ago
|
<template>
|
||
|
<view class="comment">
|
||
|
<view class="item" v-for="i in 20" :key="i">
|
||
|
<image src="@/static/home/ranking.png"></image>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.comment{
|
||
|
padding: 10rpx 0 30rpx;
|
||
|
overflow: hidden;
|
||
|
.item{
|
||
|
width: 340rpx;
|
||
|
height: 256rpx;
|
||
|
overflow: hidden;
|
||
|
margin-left: 25rpx;
|
||
|
margin-top: 20rpx;
|
||
|
float: left;
|
||
|
image{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
border-radius: 10rpx;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</style>
|