|
|
|
@ -294,15 +294,15 @@ const addBefore = () => { |
|
|
|
await selectByOrderCode(ReadCookiesValue.value.orderCode) |
|
|
|
if(historyOrder.value.type == 0 ){ |
|
|
|
if(historyOrder.value.auditStatus == 0){ |
|
|
|
orderStatus.value = '待审核' |
|
|
|
orderStatus.value = t('recharge.waitAudit') |
|
|
|
}else if(historyOrder.value.auditStatus == 1){ |
|
|
|
if(historyOrder.value.isRefund == 1){ |
|
|
|
orderStatus.value = '已退款' |
|
|
|
orderStatus.value = t('recharge.refunded') |
|
|
|
}else{ |
|
|
|
orderStatus.value = '已通过' |
|
|
|
orderStatus.value = t('recharge.passed') |
|
|
|
} |
|
|
|
}else if(historyOrder.value.auditStatus == 2){ |
|
|
|
orderStatus.value = '已驳回' |
|
|
|
orderStatus.value = t('recharge.rejected') |
|
|
|
} |
|
|
|
} |
|
|
|
RechargeDialogVisible.value = true; |
|
|
|
|