|
|
|
@ -2,20 +2,20 @@
|
|
|
|
|
* @Author: ch
|
|
|
|
|
* @Date: 2022-06-23 10:40:04
|
|
|
|
|
* @LastEditors: ch
|
|
|
|
|
* @LastEditTime: 2022-06-28 21:36:12
|
|
|
|
|
* @LastEditTime: 2022-06-30 21:30:31
|
|
|
|
|
* @Description: file content
|
|
|
|
|
-->
|
|
|
|
|
<template>
|
|
|
|
|
<div class="follow">
|
|
|
|
|
<b class="follow--title">{{day}}追评:</b>
|
|
|
|
|
<p class="follow--ctx">{{followComment.commentContent}}</p>
|
|
|
|
|
<!-- <view class="follow--img" v-if="imgs.length">
|
|
|
|
|
<image class="follow--img-item" v-for="(item, idx) in imgs" :src="item" :key="idx" @click="preview(idx)" mode="aspectFit"/>
|
|
|
|
|
</view> -->
|
|
|
|
|
<UiImgs v-if="imgs.length" :list="imgs" class="follow--imgs" />
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
import UiImgs from './UiImgs.vue';
|
|
|
|
|
export default {
|
|
|
|
|
components: { UiImgs },
|
|
|
|
|
props : {
|
|
|
|
|
followComment : {
|
|
|
|
|
type : Object,
|
|
|
|
@ -52,5 +52,8 @@ export default {
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
}
|
|
|
|
|
&--imgs{
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|