Showing
1 changed file
with
1 additions
and
1 deletions
@@ -109,7 +109,7 @@ const _getOrderStatus = (order, showLogistics) => { | @@ -109,7 +109,7 @@ const _getOrderStatus = (order, showLogistics) => { | ||
109 | } else { | 109 | } else { |
110 | 110 | ||
111 | /* 订单为货到付款订单时,计算订单状态。(货到付款没有待付款状态) */ | 111 | /* 订单为货到付款订单时,计算订单状态。(货到付款没有待付款状态) */ |
112 | - switch (order.status) { | 112 | + switch (parseInt(order.status, 10)) { |
113 | case 0: | 113 | case 0: |
114 | 114 | ||
115 | /* 备货中 */ | 115 | /* 备货中 */ |
-
Please register or login to post a comment