This commit is contained in:
xiaozhiyong
2023-04-21 11:07:12 +08:00
parent 0049dd2f2d
commit ab71c5ed95
2 changed files with 7 additions and 5 deletions

View File

@@ -358,6 +358,8 @@
return '订单已退款' return '订单已退款'
case '4': case '4':
return '退款中' return '退款中'
case '5':
return '退款失败'
} }
}, },
oilCardNatureF(value) { oilCardNatureF(value) {

View File

@@ -219,12 +219,8 @@
} }
}, },
statusConduct(value) { statusConduct(value) {
// 备注:订单状态 0待支付 1已支付 -1支付失败 2已取消3已退款
if (value) { if (value) {
// switch value switch (value + '') {
// case "0"
// return '待支付'
switch (value) {
case '0': case '0':
return '待支付' return '待支付'
case '1': case '1':
@@ -235,6 +231,10 @@
return '已取消' return '已取消'
case '3': case '3':
return '已退款' return '已退款'
case '4':
return '退款中'
case '5':
return '退款失败'
} }
} }
} }