|
@@ -74,15 +74,27 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="gameName" label="游戏名称">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="status" label="售后状态" width="100px">
|
|
|
+ <!--<el-table-column prop="status" label="售后状态" width="100px">-->
|
|
|
+ <!--<template slot-scope="scope">-->
|
|
|
+ <!--<span v-if="scope.row.status=='0'">处理中</span>-->
|
|
|
+ <!--<span v-if="scope.row.status=='1'">处理失败</span>-->
|
|
|
+ <!--<span v-if="scope.row.status=='2'">处理成功</span>-->
|
|
|
+ <!--<span v-if="scope.row.status=='3'">售后已退款</span>-->
|
|
|
+ <!--<span v-if="scope.row.status=='4'">售后已还号</span>-->
|
|
|
+ <!--</template>-->
|
|
|
+ <!--</el-table-column>-->
|
|
|
+ <el-table-column prop="afterorderStatus" label="售后订单状态">
|
|
|
<template slot-scope="scope">
|
|
|
- <span v-if="scope.row.status=='0'">处理中</span>
|
|
|
- <span v-if="scope.row.status=='1'">处理失败</span>
|
|
|
- <span v-if="scope.row.status=='2'">处理成功</span>
|
|
|
- <span v-if="scope.row.status=='3'">售后已退款</span>
|
|
|
- <span v-if="scope.row.status=='4'">售后已还号</span>
|
|
|
+ <span v-if="scope.row.afterorderStatus == null">正常</span>
|
|
|
+ <span v-if="scope.row.afterorderStatus=='0'">处理中</span>
|
|
|
+ <span v-if="scope.row.afterorderStatus=='1'">售后已退款</span>
|
|
|
+ <span v-if="scope.row.afterorderStatus=='2'">售后已解决</span>
|
|
|
+ <span v-if="scope.row.afterorderStatus=='3'">待处理</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
<el-table-column prop="aftermarketType" label="售后类型">
|
|
|
<template slot-scope="scope">
|
|
|
<dict-tag :options="dict.type.after_sales_type" :value="scope.row.aftermarketType"/>
|