3757710f by 杨炀

no message

1 parent 23234bd5
...@@ -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'})
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!