解决h5不触发swiper的change事件
This commit is contained in:
parent
1003f6f393
commit
0359c880c6
|
@ -119,7 +119,14 @@ export default {
|
||||||
this.switchTab(this.tabIndex);
|
this.switchTab(this.tabIndex);
|
||||||
}
|
}
|
||||||
if (this.currentOrderTabIndex != this.tabIndex) {
|
if (this.currentOrderTabIndex != this.tabIndex) {
|
||||||
|
// #ifdef H5
|
||||||
|
setTimeout(() => {
|
||||||
|
this.tabIndex = this.currentOrderTabIndex;
|
||||||
|
}, 10);
|
||||||
|
// #endif
|
||||||
|
// #ifndef H5
|
||||||
this.tabIndex = this.currentOrderTabIndex;
|
this.tabIndex = this.currentOrderTabIndex;
|
||||||
|
// #endif
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onReady() {},
|
onReady() {},
|
||||||
|
|
Loading…
Reference in New Issue