|
@@ -72,7 +72,7 @@
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24" v-if="info.type == '1' || info.type == '2' || info.type == '4' || info.type == '5'">
|
|
<el-col :span="24" v-if="info.type == '1' || info.type == '2' || info.type == '4' || info.type == '5'">
|
|
<el-col :span="6">退款金额</el-col>
|
|
<el-col :span="6">退款金额</el-col>
|
|
- <el-col :span="18" class="other">{{ info.money }}</el-col>
|
|
|
|
|
|
+ <el-col :span="18" class="other">{{ info.money || '' }}</el-col>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24">
|
|
<el-col :span="24">
|
|
<el-col :span="6">售后状态</el-col>
|
|
<el-col :span="6">售后状态</el-col>
|
|
@@ -238,7 +238,7 @@ export default {
|
|
let shopList = res.data.shop.list;
|
|
let shopList = res.data.shop.list;
|
|
this.$set(this, `shopList`, shopList);
|
|
this.$set(this, `shopList`, shopList);
|
|
shopList[0].color = '#0bbd87';
|
|
shopList[0].color = '#0bbd87';
|
|
- if (res.data.shop.is_check == '已签收' && this.info.status == '3') this.$set(this, `active`, 4);
|
|
|
|
|
|
+ if (res.data.shop.is_check == '已签收' && this.info.status == '3') this.$set(this, `active`, 5);
|
|
}
|
|
}
|
|
this.$set(this, `activit`, res.data);
|
|
this.$set(this, `activit`, res.data);
|
|
}
|
|
}
|
|
@@ -262,8 +262,9 @@ export default {
|
|
transport.customer_receive = true;
|
|
transport.customer_receive = true;
|
|
info.transport = transport;
|
|
info.transport = transport;
|
|
}
|
|
}
|
|
- if (form.money != undefined && form.money != '') info.money = form.money;
|
|
|
|
|
|
+ if (form != undefined && form.money != undefined && (status == '2' || status == '1')) info.money = form.money;
|
|
let res;
|
|
let res;
|
|
|
|
+ console.log(info);
|
|
this.$confirm('是否确认修改售后状态', '提示', {
|
|
this.$confirm('是否确认修改售后状态', '提示', {
|
|
confirmButtonText: '确定',
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
cancelButtonText: '取消',
|