sunlupeng 1 year ago
parent
commit
6161883849
1 changed files with 11 additions and 1 deletions
  1. 11 1
      src/views/HomeView/FestiveEvents.vue

+ 11 - 1
src/views/HomeView/FestiveEvents.vue

@@ -96,7 +96,7 @@ export default {
                 });
             }
             //抽奖
-            if(val.type=='3'){
+            if(val.type=='3'&&val.actId!=12){
                 this.$router.push({
                     path: '/home/festiveEvents/drawCarouselGame',
                     query: {
@@ -104,6 +104,16 @@ export default {
                     }
                 });
             }
+            //春节抽签
+            if(val.actId==12){
+                this.$router.push({
+                    path: '/home/festiveEvents/game',
+                    query: {
+                        url: val.activityUrl,
+                        actId:val.actId
+                    }
+                });
+            }
         }
     }
 };