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.
yanzong_qianduan/pages/news/consult/store.vue

39 lines
563 B

<template>
<view class="comment">
<view class="item" v-for="i in 20" :key="i">
10 months ago
<image :src="$picUrl+'/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>