1. 【修复】申请退款后积分等操作可能出现错误的问题 2. 【修复】拼团支付可能出现支付错误的问题 3. 【修复】退款申请后的订单流程优化和积分赠送的问题 4. 【修复】回收站中的商品无法恢复的问题 5. 【修复】一号通短信查询记录不完整的问题 6. 【修复】用户管理批量加分组,标签的问题 7. 【修复】积分日志搜索显示有误的问题 8. 【修复】手动发送优惠券可能会出错的问题 9. 【修复】核销订单创建在某种条件下会出错的问题 10. 【修复】移动端商品详情,购物车等样式兼容问题 11. 【修复】业务流程性的优化
140 lines
3.3 KiB
Vue
140 lines
3.3 KiB
Vue
<template>
|
||
<view class="evaluateWtapper">
|
||
<view class="evaluateItem" v-for="(item, indexw) in reply" :key="indexw">
|
||
<view class="pic-text acea-row row-middle">
|
||
<view class="pictrue">
|
||
<image :src="item.avatar"></image>
|
||
</view>
|
||
<view class="acea-row row-between-wrapper" style="width: 87%;">
|
||
<view class="acea-row row-middle">
|
||
<view class="name line1">{{ item.nickname }}</view>
|
||
<view class="start" :class="'star' + item.productScore"></view>
|
||
</view>
|
||
<view class="time">{{ item.createTime }}</view>
|
||
<!-- <view class="time">{{ item.createTime }}</view>
|
||
<view class="time">{{ item.suk }}</view> -->
|
||
<!-- <view class="time">{{ item.createTime }} {{ item.sku }}</view> -->
|
||
</view>
|
||
</view>
|
||
<view class="time">规格:{{ item.sku?item.sku:'无' }}</view>
|
||
<view class="evaluate-infor">{{ item.comment }}</view>
|
||
<view class="imgList acea-row" v-if="item.pics.length && item.pics[0]">
|
||
<view class="pictrue" v-for="(itemn, indexn) in item.pics" :key="indexn">
|
||
<image :src="itemn" class="image" @click='getpreviewImage(indexw, indexn)'></image>
|
||
</view>
|
||
</view>
|
||
<view class="reply" v-if="item.merchantReplyContent">
|
||
<text class="font-color">店小二</text>:{{
|
||
item.merchantReplyContent
|
||
}}
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
<script>
|
||
export default {
|
||
props: {
|
||
reply: {
|
||
type: Array,
|
||
default: () => []
|
||
}
|
||
},
|
||
data: function() {
|
||
return {};
|
||
},
|
||
methods: {
|
||
getpreviewImage: function(indexw, indexn) {
|
||
uni.previewImage({
|
||
urls: this.reply[indexw].pics,
|
||
current: this.reply[indexw].pics[indexn]
|
||
});
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
<style scoped lang='scss'>
|
||
.evaluateWtapper .evaluateItem {
|
||
background-color: #fff;
|
||
padding-bottom: 25rpx;
|
||
}
|
||
|
||
.evaluateWtapper .evaluateItem~.evaluateItem {
|
||
border-top: 1rpx solid #f5f5f5;
|
||
}
|
||
|
||
.evaluateWtapper .evaluateItem .pic-text {
|
||
font-size: 26rpx;
|
||
color: #282828;
|
||
height: 95rpx;
|
||
padding: 0 30rpx;
|
||
}
|
||
|
||
.evaluateWtapper .evaluateItem .pic-text .pictrue {
|
||
width: 56rpx;
|
||
height: 56rpx;
|
||
margin-right: 20rpx;
|
||
}
|
||
|
||
.evaluateWtapper .evaluateItem .pic-text .pictrue image {
|
||
width: 100%;
|
||
height: 100%;
|
||
border-radius: 50%;
|
||
}
|
||
|
||
.evaluateWtapper .evaluateItem .pic-text .name {
|
||
max-width: 450rpx;
|
||
}
|
||
|
||
.evaluateWtapper .evaluateItem .time {
|
||
font-size: 24rpx;
|
||
color: #82848f;
|
||
padding: 0 30rpx;
|
||
}
|
||
|
||
.evaluateWtapper .evaluateItem .evaluate-infor {
|
||
font-size: 28rpx;
|
||
color: #282828;
|
||
margin-top: 19rpx;
|
||
padding: 0 30rpx;
|
||
}
|
||
|
||
.evaluateWtapper .evaluateItem .imgList {
|
||
padding: 0 30rpx 0 15rpx;
|
||
margin-top: 25rpx;
|
||
}
|
||
|
||
.evaluateWtapper .evaluateItem .imgList .pictrue {
|
||
width: 156rpx;
|
||
height: 156rpx;
|
||
margin: 0 0 15rpx 15rpx;
|
||
}
|
||
|
||
.evaluateWtapper .evaluateItem .imgList .pictrue image {
|
||
width: 100%;
|
||
height: 100%;
|
||
background-color: #f7f7f7;
|
||
}
|
||
|
||
.evaluateWtapper .evaluateItem .reply {
|
||
font-size: 26rpx;
|
||
color: #454545;
|
||
background-color: #f7f7f7;
|
||
border-radius: 5rpx;
|
||
margin: 20rpx 30rpx 0 30rpx;
|
||
padding: 20rpx;
|
||
position: relative;
|
||
}
|
||
|
||
.evaluateWtapper .evaluateItem .reply::before {
|
||
content: "";
|
||
width: 0;
|
||
height: 0;
|
||
border-left: 20rpx solid transparent;
|
||
border-right: 20rpx solid transparent;
|
||
border-bottom: 30rpx solid #f7f7f7;
|
||
position: absolute;
|
||
top: -14rpx;
|
||
left: 40rpx;
|
||
}
|
||
</style>
|