Browse Source

fix: 修复轮播图点击跳转功能

添加对轮播图点击事件的处理逻辑,当banner包含appPath时进行页面跳转
master
前端-胡立永 4 weeks ago
parent
commit
acb29181f0
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      pages/index/index.vue

+ 6
- 1
pages/index/index.vue View File

@ -143,7 +143,12 @@
},
//
clickBanner(index) {
// const banner = this.bannerList[index];
const banner = this.bannerList[index];
if(banner.appPath){
uni.navigateTo({
url: banner.appPath
})
}
// console.log(':', banner.title);
// //
// uni.showToast({


Loading…
Cancel
Save