Commit eb3caa3c authored by youjie's avatar youjie

no message

parent 105ac837
......@@ -397,7 +397,6 @@ onMounted(async () => {
const queryParams = query()
const code = queryParams.code
if (code) {
console.log(queryParams,'---------code')
useWechatLogin(code)
}
try {
......
......@@ -113,7 +113,7 @@
@click.stop="handleAreaCodeChange(option.value)">
<div class="flex items-center space-x-3 px-2 py-1">
<!-- <span class="text-lg">{{ option.flag }}</span> -->
<span class="font-medium">{{ option.label }}</span>
<span class="font-medium">{{ option.label }}({{ option.value }})</span>
</div>
</a-doption>
</template>
......@@ -463,6 +463,7 @@ const validateEmail = async (email: string) => {
emailValidateStatus.value = 'error'
emailValidateMessage.value = result.message || t('emailValidation.checkFailed')
}
if(!result.isValid) Message.warning(result.message || emailValidateMessage.value)
} catch (error: any) {
console.error('邮箱验证失败:', error)
emailValidateStatus.value = 'warning'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment