feat: 未建立商联,首次登陆页面

This commit is contained in:
rd
2025-09-09 14:08:54 +08:00
parent 9d150ee292
commit e62d14d2f7
12 changed files with 362 additions and 21 deletions

View File

@ -33,7 +33,7 @@
</div>
</template>
</Input>
<p class="color-#F64B31 text-12px font-400 lh-20px font-family-regular" v-if="errMsg">
<p class="color-#F64B31 text-12px font-400 lh-20px font-family-regular" v-show="errMsg">
{{ errMsg }}
</p>
</FormItem>
@ -43,7 +43,7 @@
<img :src="visible ? icon2 : icon1" width="20" height="20" class="cursor-pointer" />
</template>
</Input.Password>
<p class="color-#F64B31 text-12px font-400 lh-20px font-family-regular" v-if="errMsg">
<p class="color-#F64B31 text-12px font-400 lh-20px font-family-regular" v-show="errMsg">
{{ errMsg }}
</p>
</FormItem>
@ -263,9 +263,9 @@ const getCaptcha = async () => {
};
// 验证码验证通过后
const handleVerificationSubmit = () => {
const handleVerificationSubmit = async () => {
isVerificationVisible.value = false;
postClearRateLimiter();
await postClearRateLimiter();
getCaptcha();
};