|
@@ -127,10 +127,11 @@ export function formatOrderStatus(order) {
|
|
if (order.status === 20) {
|
|
if (order.status === 20) {
|
|
return '待收货';
|
|
return '待收货';
|
|
}
|
|
}
|
|
- if (order.status === 30 && !order.commentStatus) {
|
|
|
|
- return '待评价';
|
|
|
|
- }
|
|
|
|
- if (order.status === 30 && order.commentStatus) {
|
|
|
|
|
|
+ // if (order.status === 30 && !order.commentStatus) {
|
|
|
|
+ // return '待评价';
|
|
|
|
+ // }
|
|
|
|
+ // if (order.status === 30 && order.commentStatus) {
|
|
|
|
+ if (order.status === 30) {
|
|
return '已完成';
|
|
return '已完成';
|
|
}
|
|
}
|
|
return '已关闭';
|
|
return '已关闭';
|