Commit fa234cd0 authored by qipeng's avatar qipeng

productCode!=''

parent d467d949
......@@ -568,18 +568,20 @@ export default {
}
}else if(this.orderStatus=='2'){//待评价和待使用不能显示组合订单
//item.orderType!=10&&
if(item.orderType!=4){
if(item.orderType!=4&&item.productCode!=''){
this.lists.push(item)
}
}else if(this.orderStatus=='3'){//待收货和待使用不能显示组合订单
//item.orderType!=10&&
if(item.orderType==4){
if(item.orderType==4&&item.productCode!=''){
this.lists.push(item)
}
}else if(this.orderStatus=='5'){//待评价不能显示组合订单
// if(item.orderType!=10){
// }
if(item.productCode!=''){
this.lists.push(item)
}
}else{
if(item.isDelete!=1){//( 0 未删除 1 已删除)
this.lists.push(item)
......
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