|
@@ -139,7 +139,7 @@ onMounted(() => {
|
|
<el-col :span="8">
|
|
<el-col :span="8">
|
|
<div class="title">
|
|
<div class="title">
|
|
<div class="font-semibold italic mb-2">反馈评论</div>
|
|
<div class="font-semibold italic mb-2">反馈评论</div>
|
|
- <vxe-grid v-bind="feedbackGridOptions">
|
|
|
|
|
|
+ <vxe-grid :cell-style="cellStyle" v-bind="feedbackGridOptions">
|
|
<template #empty>
|
|
<template #empty>
|
|
<el-empty description="暂无数据" />
|
|
<el-empty description="暂无数据" />
|
|
</template>
|
|
</template>
|
|
@@ -152,6 +152,15 @@ onMounted(() => {
|
|
@page-change="() => handlePageChange('feedback_negative_comment', feedbackGridOptions)"
|
|
@page-change="() => handlePageChange('feedback_negative_comment', feedbackGridOptions)"
|
|
/>
|
|
/>
|
|
</template>
|
|
</template>
|
|
|
|
+ <template #commentSlot="{ row }">
|
|
|
|
+ <div class="text-gray-500 text-xs mt-1 mb-3">
|
|
|
|
+ <el-row>
|
|
|
|
+ <el-col :span="12"> 订单编号:{{ row.order_id }}</el-col>
|
|
|
|
+ <el-col :span="12"> 评论日期:{{ row.date }}</el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="text-s mt-1 mb-1">{{ row.comment }}</div>
|
|
|
|
+ </template>
|
|
</vxe-grid>
|
|
</vxe-grid>
|
|
</div>
|
|
</div>
|
|
</el-col>
|
|
</el-col>
|