KongDuo
xiaozhiyong 2 years ago
parent 0049dd2f2d
commit ab71c5ed95
  1. 2
      BagStation/orderDetail/orderDetail.vue
  2. 10
      components/order-item.vue

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

@ -219,12 +219,8 @@
}
},
statusConduct(value) {
// 0 1 -1 23退
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 '退款失败'
}
}
}

Loading…
Cancel
Save