|
@@ -137,6 +137,14 @@
|
|
</el-option>
|
|
</el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
+
|
|
|
|
+ <el-form-item label="售后订单状态" prop="aftermarketStatus">
|
|
|
|
+ <el-select v-model="queryParams.afterorderStatus" style="width: 200px" clearable placeholder="售后订单状态">
|
|
|
|
+ <el-option v-for="(item,index) in dict.type.afterorder_status" :label="item.label" :value="item.value">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+
|
|
<el-form-item v-if="bpLr3" label="付款方式" prop="paymentMethod">
|
|
<el-form-item v-if="bpLr3" label="付款方式" prop="paymentMethod">
|
|
<el-select v-model="queryParams.paymentMethod" style="width: 200px" clearable placeholder="请选择付款状方式">
|
|
<el-select v-model="queryParams.paymentMethod" style="width: 200px" clearable placeholder="请选择付款状方式">
|
|
<el-option v-for="(item,index) in options12" :label="item.label" :value="item.value">
|
|
<el-option v-for="(item,index) in options12" :label="item.label" :value="item.value">
|
|
@@ -318,9 +326,11 @@
|
|
|
|
|
|
<el-table-column prop="afterorderStatus" label="售后订单状态">
|
|
<el-table-column prop="afterorderStatus" label="售后订单状态">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <span v-if="scope.row.afterorderStatus=='0' || scope.row.afterorderStatus == null">处理中</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=='1'">售后已退款</span>
|
|
<span v-if="scope.row.afterorderStatus=='2'">售后已解决</span>
|
|
<span v-if="scope.row.afterorderStatus=='2'">售后已解决</span>
|
|
|
|
+ <span v-if="scope.row.afterorderStatus=='3'">待处理</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
|
@@ -1881,7 +1891,7 @@
|
|
getDicts
|
|
getDicts
|
|
} from "../../../api/system/dict/data";
|
|
} from "../../../api/system/dict/data";
|
|
export default {
|
|
export default {
|
|
- dicts: ['game_platform_mapping', 'after_sales_type'],
|
|
|
|
|
|
+ dicts: ['game_platform_mapping', 'after_sales_type','afterorder_status'],
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
userName:'',
|
|
userName:'',
|
|
@@ -2417,7 +2427,6 @@
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
sqSh(item) {
|
|
sqSh(item) {
|
|
- console.log("####",item)
|
|
|
|
const result = this.findObjectById(this.deptOptions1,item.shopId);
|
|
const result = this.findObjectById(this.deptOptions1,item.shopId);
|
|
const result1 = this.gameList.find(res=>res.gameName===item.gameName);
|
|
const result1 = this.gameList.find(res=>res.gameName===item.gameName);
|
|
this.zhshform = {};
|
|
this.zhshform = {};
|