Commit 31a6590d authored by 张九刚's avatar 张九刚

Merge branch 'feature/20250529home' into 'dev'

Feature/20250529home

See merge request sparkprojects/20250528_FHQ1!35
parents 71535816 23f6e78a
......@@ -141,6 +141,9 @@ export default {
},
jumpLink(link,videoUrl){
if(videoUrl){
if(videoUrl.indexOf('http') === -1){
videoUrl = this.$baseUrl + videoUrl;
}
this.currentVideoUrl = videoUrl;
this.showVideo = true;
return;
......
......@@ -183,6 +183,9 @@ export default {
this.ipDesc = data.ipDesc;
this.swiperIconList = data.swiperIconList;
this.testVideoUrl = data.videoUrl;
if(data.videoUrl.indexOf('http') === -1){
data.videoUrl = this.$baseUrl + data.videoUrl;
}
this.currentVideoUrl = data.videoUrl;
this.channel = data.channel;
}
......
......@@ -276,6 +276,9 @@ export default {
},
jumpLink(link, videoUrl) {
if (videoUrl) {
if(videoUrl.indexOf('http') === -1){
videoUrl = this.$baseUrl + videoUrl;
}
// 弹出视频
this.currentVideoUrl = videoUrl;
this.showVideo = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment