48 lines
1.4 KiB
Vue
48 lines
1.4 KiB
Vue
<template>
|
||
<view class="evaluateWtapper">
|
||
<view class="evaluateItem" v-for="(item, evaluateWtapperIndex) in reply" :key="evaluateWtapperIndex">
|
||
<view class="pic-text acea-row row-middle">
|
||
<view class="pictrue">
|
||
<image :src="item.avatar" class="image" />
|
||
</view>
|
||
<view class="acea-row row-middle">
|
||
<view class="name line1">{{ item.nickname }}</view>
|
||
<view class="start" :class="'star' + item.star"></view>
|
||
</view>
|
||
</view>
|
||
<view class="time">{{ dataFormat(item.addTime) }} {{ item.suk }}</view>
|
||
<view class="evaluate-infor">{{ item.comment }}</view>
|
||
<view class="imgList acea-row">
|
||
<view class="pictrue" v-for="(itemn, eq) in item.picturesArr" :key="eq">
|
||
<image :src="itemn" class="image" />
|
||
</view>
|
||
</view>
|
||
<!--<view class="reply" v-if="item.merchant_reply_content">-->
|
||
<!--<text class="font-color-red">店小二</text>:{{-->
|
||
<!--item.merchant_reply_content-->
|
||
<!--}}-->
|
||
<!--</view>-->
|
||
</view>
|
||
</view>
|
||
</template>
|
||
<script>
|
||
import { dataFormat } from "@/utils";
|
||
|
||
export default {
|
||
name: "UserEvaluation",
|
||
props: {
|
||
reply: {
|
||
type: Array,
|
||
default: () => []
|
||
}
|
||
},
|
||
data: function() {
|
||
return {};
|
||
},
|
||
mounted: function() {},
|
||
methods: {
|
||
dataFormat,
|
||
}
|
||
};
|
||
</script>
|