订单详情页update

This commit is contained in:
2023-08-24 10:05:39 +08:00
parent 9ee2dcef84
commit 417f02d413

View File

@@ -339,10 +339,10 @@ export default {
return [this.lastMonitorData]; return [this.lastMonitorData];
}, },
retryRefundFlag() { retryRefundFlag() {
if (this.orderInfo[0].orderStatus !== '6') { if (this.orderInfo[0] == null || this.orderInfo[0].orderStatus !== '6') {
return false; return false;
} }
if (this.payDetail[0].payMode !== '4') { if (this.payDetail[0] == null || this.payDetail[0].payMode !== '4') {
return false; return false;
} }
if (this.orderDetail.refundAmount == null || this.orderDetail.refundAmount <= 0.00 ) { if (this.orderDetail.refundAmount == null || this.orderDetail.refundAmount <= 0.00 ) {