106 lines
3.2 KiB
Vue
106 lines
3.2 KiB
Vue
<template>
|
||
<div class="pt-24px">
|
||
<n-form ref="formRef" :model="model" :rules="rules" size="large" :show-label="false">
|
||
<n-form-item path="phone">
|
||
<n-input v-model:value="model.phone" placeholder="手机号码" />
|
||
</n-form-item>
|
||
<n-form-item path="pwd">
|
||
<n-input v-model:value="model.pwd" placeholder="密码" />
|
||
</n-form-item>
|
||
<n-form-item path="isCaptcha">
|
||
<div class="w-full">
|
||
<mi-captcha :theme-color="theme.themeColor" :logo="logo" @success="handleCaptcha" />
|
||
</div>
|
||
</n-form-item>
|
||
<n-space :vertical="true" size="large">
|
||
<div class="flex-y-center justify-between">
|
||
<n-checkbox v-model:checked="rememberMe">记住我</n-checkbox>
|
||
<span class="g_text-primary cursor-pointer" @click="toCurrentLogin('reset-pwd')">忘记密码?</span>
|
||
</div>
|
||
<n-button type="primary" size="large" :block="true" :round="true" @click="handleSubmit">确定</n-button>
|
||
<div class="flex-y-center justify-between">
|
||
<n-button class="flex-1" :block="true" @click="toCurrentLogin('code-login')">
|
||
{{ EnumLoginModule['code-login'] }}
|
||
</n-button>
|
||
<div class="w-12px"></div>
|
||
<n-button class="flex-1" :block="true" @click="toCurrentLogin('register')">
|
||
{{ EnumLoginModule.register }}
|
||
</n-button>
|
||
</div>
|
||
</n-space>
|
||
</n-form>
|
||
<other-login />
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts" setup>
|
||
import { reactive, ref } from 'vue';
|
||
import { NForm, NFormItem, NInput, NSpace, NCheckbox, NButton, useNotification } from 'naive-ui';
|
||
import type { FormInst, FormRules } from 'naive-ui';
|
||
import { EnumLoginModule } from '@/enum';
|
||
import { useThemeStore } from '@/store';
|
||
import { useRouterChange, useRouteQuery } from '@/hooks';
|
||
import { setToken } from '@/utils';
|
||
import { OtherLogin } from './components';
|
||
import logo from '@/assets/img/common/logo.png';
|
||
|
||
const theme = useThemeStore();
|
||
const { toHome, toCurrentLogin, toLoginRedirectUrl } = useRouterChange();
|
||
const { loginRedirectUrl } = useRouteQuery();
|
||
const notification = useNotification();
|
||
|
||
const formRef = ref<(HTMLElement & FormInst) | null>(null);
|
||
const model = reactive({
|
||
phone: '15100000000',
|
||
pwd: '123456',
|
||
isCaptcha: false
|
||
});
|
||
const rules: FormRules = {
|
||
phone: {
|
||
required: true,
|
||
trigger: ['blur', 'input'],
|
||
message: '请输入手机号'
|
||
},
|
||
pwd: {
|
||
required: true,
|
||
trigger: ['blur', 'input'],
|
||
message: '请输入密码'
|
||
},
|
||
isCaptcha: {
|
||
required: true,
|
||
type: 'boolean',
|
||
trigger: 'change',
|
||
message: '请点击按钮进行验证码校验',
|
||
validator: (_, value) => value === true
|
||
}
|
||
};
|
||
const rememberMe = ref(false);
|
||
|
||
function handleCaptcha() {
|
||
model.isCaptcha = true;
|
||
}
|
||
|
||
function handleSubmit(e: MouseEvent) {
|
||
if (!formRef.value) return;
|
||
e.preventDefault();
|
||
|
||
formRef.value.validate(errors => {
|
||
if (!errors) {
|
||
setToken('temp-token');
|
||
if (loginRedirectUrl.value) {
|
||
toLoginRedirectUrl(loginRedirectUrl.value);
|
||
} else {
|
||
toHome();
|
||
}
|
||
|
||
notification.success({
|
||
title: '登录成功!',
|
||
content: '欢迎回来,Soybean!',
|
||
duration: 5000
|
||
});
|
||
}
|
||
});
|
||
}
|
||
</script>
|
||
<style scoped></style>
|