Kaynağa Gözat

轮播图增加跳转

htc 6 gün önce
ebeveyn
işleme
0fd583b123
1 değiştirilmiş dosya ile 15 ekleme ve 0 silme
  1. 15 0
      pages/home.vue

+ 15 - 0
pages/home.vue

@@ -10,6 +10,7 @@
 			<u-swiper
 				:list="bannarList"
 				@change="e => current = e.current"
+				@click="bannerClick"
 				:autoplay="true"
 				:interval="2000"
 				:duration="200"
@@ -197,6 +198,20 @@
 					} else this.bannarList = [this.defaultBanner]
 				})
 			},
+			bannerClick(e){
+				let banner = this.bannerOrigin[e];
+				if(banner&&banner?.redirect){
+					if(banner?.redirectType==1){//微信公众号
+						uni.navigateTo({
+							url:'/pages/webView?src='+banner?.redirect
+						})
+					}else if(banner?.redirectType==2){//微信小程序
+						uni.navigateToMiniProgram({
+							appId:banner?.redirect
+						})
+					}
+				}
+			},
 			toTurn(url){
 				if(!url) return 
 				if(url!=='/pages/dialog'&&!this.isLogin()) return