订单详情页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];
},
retryRefundFlag() {
if (this.orderInfo[0].orderStatus !== '6') {
if (this.orderInfo[0] == null || this.orderInfo[0].orderStatus !== '6') {
return false;
}
if (this.payDetail[0].payMode !== '4') {
if (this.payDetail[0] == null || this.payDetail[0].payMode !== '4') {
return false;
}
if (this.orderDetail.refundAmount == null || this.orderDetail.refundAmount <= 0.00 ) {