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.
|
|
|
<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">{{ item.add_time }} {{ 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>
|
|
|
|
export default {
|
|
|
|
name: "UserEvaluation",
|
|
|
|
props: {
|
|
|
|
reply: {
|
|
|
|
type: Array,
|
|
|
|
default: () => []
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data: function() {
|
|
|
|
return {};
|
|
|
|
},
|
|
|
|
mounted: function() {},
|
|
|
|
methods: {}
|
|
|
|
};
|
|
|
|
</script>
|