sunlupeng 10 months ago
parent
commit
f798a8aa59
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/views/HomeView/DrawCarouselGame/DrawCarouselGame.vue

+ 2 - 1
src/views/HomeView/DrawCarouselGame/DrawCarouselGame.vue

@@ -19,7 +19,8 @@ export default{
   },
   data() {
     return {
-            src: this.$route.query.actId == 37 ? './dailyDrawCarousel.html' : this.$route.query.actId == 8 ? './monthlyDrawCarousel.html' : './newYearDrawCarousel.html', //需要加载的子页面url
+            // src: this.$route.query.actId == 37 ? './dailyDrawCarousel.html' : this.$route.query.actId == 8 ? './monthlyDrawCarousel.html' : './newYearDrawCarousel.html', //需要加载的子页面url
+            src: this.$route.query.actId == 37 ? './dailyDrawCarousel.html' : this.$route.query.actId == 8 ? './monthlyDrawCarousel.html' : '', //需要加载的子页面url
             actId:this.$route.query.actId
         };
   },