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.
79 lines
1.5 KiB
79 lines
1.5 KiB
<template>
|
|
<view class="box">
|
|
<view class="top_row">
|
|
<view class="avatar">
|
|
<image :src="item.phone" mode=""></image>
|
|
</view>
|
|
<view class="textInfo">
|
|
<view class="name oneRowText">{{ item.name}}</view>
|
|
<view class="starBox">
|
|
<u-rate active-color="#1989FA" inactive-color="#1989FA" gutter="1" :size="16" :value="item.stars" :count="5" :readonly="true" ></u-rate>
|
|
<view class="num">{{ item.stars }}分</view>
|
|
</view>
|
|
</view>
|
|
<view class="date">{{ $u.date(item.createTime ,'yyyy/mm/dd' ) }}</view>
|
|
</view>
|
|
<view class="text">{{ item.description }}</view>
|
|
<view class="imgBox" v-if="item.images&&item.images.length">
|
|
<u-album :urls="item.images" :multipleSize="'160rpx'"></u-album>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: ['item']
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.top_row {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 24rpx;
|
|
.avatar {
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
overflow: hidden;
|
|
border-radius: 50%;
|
|
background: #f6f6f6;
|
|
}
|
|
.textInfo {
|
|
flex: 1;
|
|
width: 0;
|
|
.name {
|
|
font-size: 26rpx;
|
|
color: #333;
|
|
font-weight: 500;
|
|
}
|
|
padding: 0 10rpx;
|
|
|
|
}
|
|
.date {
|
|
font-size: 24rpx;
|
|
color: #686B73;
|
|
}
|
|
}
|
|
|
|
.starBox {
|
|
padding: 10rpx 0 0rpx 0;
|
|
}
|
|
|
|
.text {
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
.imgBox {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding-top: 20rpx;
|
|
.img {
|
|
margin-top: 20rpx;
|
|
width: 160rpx;
|
|
height: 160rpx;
|
|
border-radius: 8rpx;
|
|
overflow: hidden;
|
|
margin-right: 24rpx;
|
|
}
|
|
}
|
|
</style>
|