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

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