|
@@ -16,8 +16,21 @@
|
|
|
<el-col>{{ item.customer.name }}</el-col>
|
|
|
</el-col>
|
|
|
<el-col :span="21">
|
|
|
- <el-col>
|
|
|
- <el-rate v-model="item.goods_score" disabled score-template="{item.goods_score}" :colors="colors"> </el-rate>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-col :span="5">
|
|
|
+ <el-col :span="8">商品评分:</el-col>
|
|
|
+ <el-col :span="15"><el-rate v-model="item.goods_score" disabled score-template="{item.goods_score}" :colors="colors"> </el-rate></el-col>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="5">
|
|
|
+ <el-col :span="8">店铺评分:</el-col>
|
|
|
+ <el-col :span="15"><el-rate v-model="item.shop_score" disabled score-template="{item.shop_score}" :colors="colors"> </el-rate></el-col>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="5">
|
|
|
+ <el-col :span="8">快递评分:</el-col>
|
|
|
+ <el-col :span="15">
|
|
|
+ <el-rate v-model="item.transport_score" disabled score-template="{item.transport_score}" :colors="colors"> </el-rate>
|
|
|
+ </el-col>
|
|
|
+ </el-col>
|
|
|
</el-col>
|
|
|
<el-col>已购规格:{{ item.goodsSpec.name }}</el-col>
|
|
|
<el-col v-for="(replys, index) in item.reply" :key="index">
|
|
@@ -74,13 +87,8 @@ export default {
|
|
|
skip: 1,
|
|
|
total: 0,
|
|
|
limit: 5,
|
|
|
- // 评分
|
|
|
- value: 4.0,
|
|
|
// 评分颜色
|
|
|
colors: ['#99A9BF', '#F7BA2A', '#FF0000'],
|
|
|
- // 回复输入框
|
|
|
- reply: '',
|
|
|
- num: '0',
|
|
|
};
|
|
|
},
|
|
|
async created() {
|