Commit 6be75965 authored by qipeng's avatar qipeng

取消orderType!=10的限制

parent bd97ca59
...@@ -564,17 +564,19 @@ export default { ...@@ -564,17 +564,19 @@ export default {
this.lists.push(item) this.lists.push(item)
} }
}else if(this.orderStatus=='2'){//待评价和待使用不能显示组合订单 }else if(this.orderStatus=='2'){//待评价和待使用不能显示组合订单
if(item.orderType!=10&&item.orderType!=4){ //item.orderType!=10&&
if(item.orderType!=4){
this.lists.push(item) this.lists.push(item)
} }
}else if(this.orderStatus=='3'){//待收货和待使用不能显示组合订单 }else if(this.orderStatus=='3'){//待收货和待使用不能显示组合订单
if(item.orderType!=10&&item.orderType==4){ //item.orderType!=10&&
if(item.orderType==4){
this.lists.push(item) this.lists.push(item)
} }
}else if(this.orderStatus=='5'){//待评价不能显示组合订单 }else if(this.orderStatus=='5'){//待评价不能显示组合订单
if(item.orderType!=10){ // if(item.orderType!=10){
this.lists.push(item) // }
} this.lists.push(item)
}else{ }else{
if(item.isDelete!=1){//( 0 未删除 1 已删除) if(item.isDelete!=1){//( 0 未删除 1 已删除)
this.lists.push(item) this.lists.push(item)
...@@ -590,10 +592,12 @@ export default { ...@@ -590,10 +592,12 @@ export default {
// 主订单显示待支付子订单显示除了待支付 // 主订单显示待支付子订单显示除了待支付
this.lists.forEach((item)=>{ this.lists.forEach((item)=>{
if(item.subOrderType!=9){ if(item.subOrderType!=9){
if(item.orderType==10&&item.orderStatus==0){ //item.orderType==10&&
if(item.orderStatus==0){
item.showList=true item.showList=true
} }
if(item.orderType!=10&&item.orderStatus!=0){ //item.orderType!=10&&
if(item.orderStatus!=0){
item.showList=true item.showList=true
} }
} }
......
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