修改团购备货中和待自提的数据异常问题
This commit is contained in:
parent
ad7d404482
commit
e44cf88635
@ -168,6 +168,8 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
selectTab(index, item) {
|
||||
console.log("🚀 ~ selectTab ~ index:", index)
|
||||
console.log("🚀 ~ selectTab ~ item:", item)
|
||||
this.selectedTab = index;
|
||||
if (index == 6) {
|
||||
this.evaluateStatus = 2;
|
||||
@ -176,10 +178,10 @@ export default {
|
||||
this.evaluateStatus = 1;
|
||||
this.selectStatus = ''
|
||||
} else if (index == 2) {
|
||||
this.selectStatus = 6;
|
||||
this.selectStatus = 3;
|
||||
this.evaluateStatus = ''
|
||||
} else {
|
||||
this.selectStatus = index;
|
||||
this.selectStatus = index > 2 ? index + 1 : index;
|
||||
this.evaluateStatus = ''
|
||||
}
|
||||
this.getOrderList();
|
||||
|
||||
@ -177,10 +177,10 @@ export default {
|
||||
this.evaluateStatus = 1;
|
||||
this.selectStatus = ''
|
||||
} else if (index == 2) {
|
||||
this.selectStatus = 6;
|
||||
this.selectStatus = 3;
|
||||
this.evaluateStatus = ''
|
||||
} else {
|
||||
this.selectStatus = index;
|
||||
this.selectStatus = index > 2 ? index + 1 : index;
|
||||
this.evaluateStatus = ''
|
||||
}
|
||||
this.getOrderList();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user