优化登录、注册页

This commit is contained in:
zjl 2024-12-16 14:56:45 +08:00
parent 10fe408391
commit 6936835a1a
3 changed files with 48 additions and 10 deletions

View File

@ -104,20 +104,29 @@
const captchaImg = ref(''); const captchaImg = ref('');
// //
/**
* 定义表单参数
*/
interface FormState { interface FormState {
username: string; username: string;
password: string; password: string;
code: string; code: string;
key: string; key: string;
} }
/**
* 定义参数
*/
const message = useMessage(); const message = useMessage();
const emit = defineEmits(['backLogin']); const emit = defineEmits(['backLogin']);
const formRef = ref(); const formRef = ref();
const loading = ref(false); const loading = ref(false);
const autoLogin = ref(true); const autoLogin = ref(true);
const LOGIN_NAME = PageEnum.BASE_LOGIN_NAME; const LOGIN_NAME = PageEnum.BASE_LOGIN_NAME;
/**
* 定义表单提交参数
*/
const formInline = reactive({ const formInline = reactive({
username: '', username: '',
password: '', password: '',
@ -125,16 +134,21 @@
key: '', key: '',
}); });
/**
* 定义验证规则
*/
const rules: FormRules = { const rules: FormRules = {
username: { required: true, message: '请输入登录账号', trigger: 'blur' }, username: { required: true, message: '请输入登录账号', trigger: 'blur' },
password: { required: true, message: '请输入密码', trigger: 'blur' }, password: { required: true, message: '请输入密码', trigger: 'blur' },
code: { required: true, message: '请输入验证码', trigger: 'blur' }, code: { required: true, message: '请输入验证码', trigger: 'blur' },
}; };
const userStore = useUserStore();
/**
* 执行表单提交
*/
const userStore = useUserStore();
const router = useRouter(); const router = useRouter();
const route = useRoute(); const route = useRoute();
const handleSubmit = () => { const handleSubmit = () => {
if (!formRef.value) return; if (!formRef.value) return;
formRef.value formRef.value
@ -171,15 +185,25 @@
}); });
}; };
/**
* 获取验证码
*/
const getCaptcha = async () => { const getCaptcha = async () => {
let { key, captcha } = await getInfoCaptcha(); let { key, captcha } = await getInfoCaptcha();
formInline.key = key; formInline.key = key;
captchaImg.value = captcha; captchaImg.value = captcha;
}; };
/**
* 执行去注册
*/
const goRegister = () => { const goRegister = () => {
emit('backLogin', false); emit('backLogin', false);
}; };
/**
* 获取验证码
*/
getCaptcha(); getCaptcha();
</script> </script>

View File

@ -54,6 +54,9 @@
const captchaImg = ref(''); const captchaImg = ref('');
// //
/**
* 定义表单参数
*/
interface FormState { interface FormState {
username: string; username: string;
password: string; password: string;
@ -154,13 +157,6 @@
} }
}); });
}; };
const getCaptcha = async () => {
let { key, captcha } = await getInfoCaptcha();
formInline.key = key;
captchaImg.value = captcha;
};
getCaptcha();
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>

View File

@ -51,15 +51,33 @@
import RegisterForm from './RegisterForm.vue'; import RegisterForm from './RegisterForm.vue';
import { UserAddOutlined, RollbackOutlined } from '@vicons/antd'; import { UserAddOutlined, RollbackOutlined } from '@vicons/antd';
import { ArrowUndoOutline } from '@vicons/ionicons5'; import { ArrowUndoOutline } from '@vicons/ionicons5';
/**
* 定义参数
*/
const loginFlag = ref(true); const loginFlag = ref(true);
const activeIndex = ref(0); const activeIndex = ref(0);
const tabData = ref(['账号登录', '手机号登录', '扫码登录']); const tabData = ref(['账号登录', '手机号登录', '扫码登录']);
/**
* 执行切换TAB
* @param index 参数
*/
const handleClick = (index) => { const handleClick = (index) => {
activeIndex.value = index; activeIndex.value = index;
}; };
/**
* 执行切换登录注册表单
*/
const handleCornerClick = () => { const handleCornerClick = () => {
loginFlag.value = !loginFlag.value; loginFlag.value = !loginFlag.value;
}; };
/**
* 执行去登录
* @param type 参数
*/
const goLogin = (type) => { const goLogin = (type) => {
loginFlag.value = type; loginFlag.value = type;
}; };