bugfix: 验证码输入状态

feat: 接收语言参数
This commit is contained in:
2026-02-09 11:51:14 +08:00
parent af3161fc86
commit 7665bf59da
9 changed files with 1791 additions and 1879 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -147,10 +147,11 @@
}
)
const handleBtnClick = () => {
const lang = route.params.lang ? `/${route.params.lang}` : ''
if (btnType.value === 'index') {
router.push('/award/contestants')
router.push(`${lang}/contestants`)
} else {
router.push('/award/index')
router.push(`${lang}`)
}
}
</script>

File diff suppressed because it is too large Load Diff

View File

@@ -65,7 +65,7 @@
})
const handleSubmitApplication = () => {
router.push('/award/contestants')
router.push('/contestants')
}
</script>