修复小程序点击轮播不跳转问题

This commit is contained in:
TOP糯米 2023-04-02 12:23:03 +08:00
parent 0138d50226
commit 0802d2d920
2 changed files with 8 additions and 2 deletions

View File

@ -64,7 +64,7 @@ export default {
this.currentIndex = e.detail.current;
},
clickItem(item) {
this.$emit("onClickItem", item);
this.$emit("clickItem", item);
},
},
};

View File

@ -4,7 +4,7 @@
<widget-search :disabled="true" />
</view>
<view class="banner">
<app-banner :list="bannerList" @onClickItem="toPage($event.page)" />
<app-banner :list="bannerList" @clickItem="clickBanner" />
</view>
<view class="notify">
<view class="icon">
@ -146,6 +146,12 @@ export default {
onReachBottom() {},
onPullDownRefresh() {},
methods: {
/**
* 点击轮播
*/
clickBanner(e) {
this.toPage(e.page);
},
/**
* 跳转
*/