perf(login): 优化登录注册页面的用户体验

- 在 ConfigProvider 中添加 autoInsertSpaceInButton属性以禁用自动插入空格
- 优化登录表单的样式和布局
- 改进注册表单的交互逻辑,增加密码验证和错误提示功能
- 调整注册表单的样式和结构,提高可读性和易用性
This commit is contained in:
rd
2025-09-16 10:10:16 +08:00
parent 348ad2a6ad
commit 8944fc8e6c
3 changed files with 24 additions and 11 deletions

View File

@ -1,5 +1,5 @@
<template>
<ConfigProvider :locale="zhCN" :theme="redTheme">
<ConfigProvider :autoInsertSpaceInButton="false" :locale="zhCN" :theme="redTheme">
<router-view v-if="$route.meta.withoutLayout" />
<LayoutBasic v-else />
</ConfigProvider>