sunlupeng 1 년 전
부모
커밋
6161883849
1개의 변경된 파일11개의 추가작업 그리고 1개의 파일을 삭제
  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
+                    }
+                });
+            }
         }
     }
 };