no message
Showing
1 changed file
with
6 additions
and
1 deletions
| ... | @@ -236,7 +236,12 @@ onMounted(() => { | ... | @@ -236,7 +236,12 @@ onMounted(() => { |
| 236 | matchId = route.query.matchId | 236 | matchId = route.query.matchId |
| 237 | groupId.value = group.id | 237 | groupId.value = group.id |
| 238 | signType.value = route.query.signType || '' | 238 | signType.value = route.query.signType || '' |
| 239 | isNational.value = route.query.isNational | 239 | if(route.query.isNational==true||route.query.isNational=='true'){ |
| 240 | isNational.value = true | ||
| 241 | } | ||
| 242 | if(route.query.isNational==false||route.query.isNational=='false'){ | ||
| 243 | isNational.value = false | ||
| 244 | } | ||
| 240 | languageSource.value = route.query.languageSource | 245 | languageSource.value = route.query.languageSource |
| 241 | if(!user){ | 246 | if(!user){ |
| 242 | router.push({name: 'home'}) | 247 | router.push({name: 'home'}) | ... | ... |
-
Please register or sign in to post a comment