This commit is contained in:
2023-09-01 10:46:54 +08:00
parent 554b1482ee
commit 3fd71220de
4 changed files with 26 additions and 16 deletions

View File

@@ -505,21 +505,21 @@ export default {
return [this.lastMonitorData];
},
retryRefundFlag() {
if (this.orderInfo == null || this.orderInfo.orderStatus !== "6") {
return false;
}
if (this.payDetail[0] == null || this.payDetail[0].payMode !== "4") {
return false;
}
if (
this.payDetail[0].refundAmount == null ||
this.payDetail[0].refundAmount <= 0.0
) {
return false;
}
if (this.orderRefundInfoList.length === 0) {
return false;
}
// if (this.orderInfo == null || this.orderInfo.orderStatus !== "6") {
// return false;
// }
// if (this.payDetail[0] == null || this.payDetail[0].payMode !== "4") {
// return false;
// }
// if (
// this.payDetail[0].refundAmount == null ||
// this.payDetail[0].refundAmount <= 0.0
// ) {
// return false;
// }
// if (this.orderRefundInfoList.length === 0) {
// return false;
// }
return true;
},
},