diff --git a/pages/index/component/pictureCube.vue b/pages/index/component/pictureCube.vue index 1ac84c1..49c30b3 100644 --- a/pages/index/component/pictureCube.vue +++ b/pages/index/component/pictureCube.vue @@ -121,9 +121,18 @@ else return url.replace('http://', 'https://'); }, goDetail(url) { + console.log(url) + let urls = url.link - urls = merPath(urls, this.merId) - this.$util.JumpPath(urls); + if(urls.indexOf('http')==-1){ + uni.navigateTo({ + url:url.link + }) + }else{ + urls = merPath(urls, this.merId) + this.$util.JumpPath(urls); + } + } } }