修改售后退货退款-显示undefine的bug
This commit is contained in:
parent
9fe388e5d8
commit
e2b284f048
@ -369,7 +369,7 @@ export default {
|
|||||||
console.log('售后商品 - 选中的售后类型:', selectedType);
|
console.log('售后商品 - 选中的售后类型:', selectedType);
|
||||||
console.log('选中的售后商品:', this.selectedAsGood);
|
console.log('选中的售后商品:', this.selectedAsGood);
|
||||||
|
|
||||||
this.merchantContact = `${this.orderItem.supplier_name} ${this.orderItem.supplier_phone}`;
|
this.merchantContact = `${this.orderItem.supplier_name} ${this.orderItem.supplier_phone || ''}`;
|
||||||
this.merchantAddress = this.orderItem.supplier_address;
|
this.merchantAddress = this.orderItem.supplier_address;
|
||||||
|
|
||||||
this.afterSalePopup = false;
|
this.afterSalePopup = false;
|
||||||
|
|||||||
@ -165,7 +165,7 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
status: "",
|
status: "",
|
||||||
countdown: "9:59:59",
|
countdown: "",
|
||||||
orderInfo: {},
|
orderInfo: {},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
@ -173,8 +173,7 @@ export default {
|
|||||||
const item = JSON.parse(options?.item);
|
const item = JSON.parse(options?.item);
|
||||||
this.orderInfo = item;
|
this.orderInfo = item;
|
||||||
// 启动倒计时
|
// 启动倒计时
|
||||||
// item.order_status == "1" ? this.startCountdown() : "";
|
item.order_status == "1" ? this.startCountdown() : "";
|
||||||
this.startCountdown()
|
|
||||||
this.status = JSON.stringify(item.order_status);
|
this.status = JSON.stringify(item.order_status);
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user