Commit 4ec5c0e8 authored by zhengyi's avatar zhengyi

订单列表提货状态文案转化修正

parent 93edae19
...@@ -611,7 +611,7 @@ public class OrderBackPageVO { ...@@ -611,7 +611,7 @@ public class OrderBackPageVO {
if (Objects.nonNull(pickState) && pickState > 0) { if (Objects.nonNull(pickState) && pickState > 0) {
// 当提货状态不未空时,判断提货状态是否需要转化为对应的原有主状态中的提货状态 // 当提货状态不未空时,判断提货状态是否需要转化为对应的原有主状态中的提货状态
this.status = pickState == 1 ? 21 : 20; this.status = pickState == 1 ? 21 : 20;
this.statusText = lang == 0 ? OrderStatusEnum.valueOf(status).getNameZh() : OrderStatusEnum.valueOf(status).getNameEn(); this.statusText = lang == 0 ? OrderStatusEnum.valueOf(this.status).getNameZh() : OrderStatusEnum.valueOf(this.status).getNameEn();
} }
this.getOrderDesc(); this.getOrderDesc();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment