Browse Source

解决订单列表中状态显示与filter中下拉框描述不一致的问题

raolu 7 năm trước cách đây
mục cha
commit
ab65eeed9a
1 tập tin đã thay đổi với 6 bổ sung1 xóa
  1. 6 1
      js/buz/order-list.js

+ 6 - 1
js/buz/order-list.js

@ -75,7 +75,12 @@ function getPrescriptionList( refresh){
                            }
                        }
                        o.result = result;
                        o.statusName = getStatusName(o.status);
                        if(o.status == '50'){
                            o.statusName = '订单已支付';
                        }else{
                            o.statusName = getStatusName(o.status);
                        }
                        
                        o.express = getExpressName(o.dispensaryType);
                        var address = "",
                            expressage = "";