206 lines
4.7 KiB
Vue
206 lines
4.7 KiB
Vue
<script setup lang="ts">
|
|
import { reactive, ref, unref, watch } from 'vue'
|
|
import { Form } from '@/components/Form'
|
|
import { useI18n } from '@/hooks/web/useI18n'
|
|
import { ElButton, ElCheckbox, ElLink } from 'element-plus'
|
|
import { required } from '@/utils/formRules'
|
|
import { useForm } from '@/hooks/web/useForm'
|
|
import { loginApi } from '@/api/login'
|
|
import type { UserLoginType } from '@/api/login/types'
|
|
import { useCache } from '@/hooks/web/useCache'
|
|
import { useAppStore } from '@/store/modules/app'
|
|
import { usePermissionStore } from '@/store/modules/permission'
|
|
import { useRouter } from 'vue-router'
|
|
import type { RouteLocationNormalizedLoaded, RouteRecordRaw } from 'vue-router'
|
|
|
|
const appStore = useAppStore()
|
|
|
|
const permissionStore = usePermissionStore()
|
|
|
|
const { currentRoute, addRoute, push } = useRouter()
|
|
|
|
const { t } = useI18n()
|
|
|
|
const rules = {
|
|
username: [required],
|
|
password: [required]
|
|
}
|
|
|
|
const schema = reactive<FormSchema[]>([
|
|
{
|
|
field: 'title',
|
|
colProps: {
|
|
span: 24
|
|
}
|
|
},
|
|
{
|
|
field: 'username',
|
|
label: t('login.username'),
|
|
value: 'admin',
|
|
component: 'Input',
|
|
colProps: {
|
|
span: 24
|
|
},
|
|
componentProps: {
|
|
placeholder: t('login.usernamePlaceholder')
|
|
}
|
|
},
|
|
{
|
|
field: 'password',
|
|
label: t('login.password'),
|
|
value: 'admin',
|
|
component: 'InputPassword',
|
|
colProps: {
|
|
span: 24
|
|
},
|
|
componentProps: {
|
|
style: {
|
|
width: '100%'
|
|
},
|
|
placeholder: t('login.passwordPlaceholder')
|
|
}
|
|
},
|
|
{
|
|
field: 'tool',
|
|
colProps: {
|
|
span: 24
|
|
}
|
|
},
|
|
{
|
|
field: 'login',
|
|
colProps: {
|
|
span: 24
|
|
}
|
|
},
|
|
{
|
|
field: 'other',
|
|
component: 'Divider',
|
|
label: t('login.otherLogin'),
|
|
componentProps: {
|
|
contentPosition: 'center'
|
|
}
|
|
},
|
|
{
|
|
field: 'otherIcon',
|
|
colProps: {
|
|
span: 24
|
|
}
|
|
}
|
|
])
|
|
|
|
const iconSize = 30
|
|
|
|
const remember = ref(false)
|
|
|
|
const { register, elFormRef, methods } = useForm()
|
|
|
|
const loading = ref(false)
|
|
|
|
const iconColor = '#999'
|
|
|
|
const redirect = ref<string>('')
|
|
|
|
watch(
|
|
() => currentRoute.value,
|
|
(route: RouteLocationNormalizedLoaded) => {
|
|
redirect.value = route?.query?.redirect as string
|
|
},
|
|
{
|
|
immediate: true
|
|
}
|
|
)
|
|
|
|
// 登录
|
|
const signIn = async () => {
|
|
const formRef = unref(elFormRef)
|
|
const validate = await formRef?.validate()?.catch(() => {})
|
|
if (validate) {
|
|
loading.value = true
|
|
const { getFormData } = methods
|
|
const formData = (await getFormData()) as UserLoginType
|
|
|
|
const res = await loginApi(formData)
|
|
.catch(() => {})
|
|
.finally(() => (loading.value = false))
|
|
|
|
if (res) {
|
|
const { wsCache } = useCache()
|
|
wsCache.set(appStore.getUserInfo, res.data)
|
|
await permissionStore.generateRoutes().catch(() => {})
|
|
|
|
permissionStore.getAddRouters.forEach((route) => {
|
|
addRoute(route as RouteRecordRaw) // 动态添加可访问路由表
|
|
})
|
|
permissionStore.setIsAddRouters(true)
|
|
// push({ path: redirect.value || permissionStore.addRouters[0].path })
|
|
push({ path: permissionStore.addRouters[0].path })
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<Form
|
|
:schema="schema"
|
|
:rules="rules"
|
|
label-position="top"
|
|
hide-required-asterisk
|
|
size="large"
|
|
@register="register"
|
|
>
|
|
<template #title>
|
|
<h2 class="text-2xl font-bold text-center w-[100%]">{{ t('login.login') }}</h2>
|
|
</template>
|
|
|
|
<template #tool>
|
|
<div class="flex justify-between items-center w-[100%]">
|
|
<ElCheckbox v-model="remember" :label="t('login.remember')" size="small" />
|
|
<ElLink type="primary" :underline="false">{{ t('login.forgetPassword') }}</ElLink>
|
|
</div>
|
|
</template>
|
|
|
|
<template #login>
|
|
<ElButton :loading="loading" type="primary" class="w-[100%]" @click="signIn">
|
|
{{ t('login.login') }}
|
|
</ElButton>
|
|
</template>
|
|
|
|
<template #otherIcon>
|
|
<div class="flex justify-between w-[100%]">
|
|
<Icon
|
|
icon="ant-design:github-filled"
|
|
:size="iconSize"
|
|
class="cursor-pointer anticon"
|
|
:color="iconColor"
|
|
/>
|
|
<Icon
|
|
icon="ant-design:wechat-filled"
|
|
:size="iconSize"
|
|
class="cursor-pointer anticon"
|
|
:color="iconColor"
|
|
/>
|
|
<Icon
|
|
icon="ant-design:alipay-circle-filled"
|
|
:size="iconSize"
|
|
:color="iconColor"
|
|
class="cursor-pointer anticon"
|
|
/>
|
|
<Icon
|
|
icon="ant-design:weibo-circle-filled"
|
|
:size="iconSize"
|
|
:color="iconColor"
|
|
class="cursor-pointer anticon"
|
|
/>
|
|
</div>
|
|
</template>
|
|
</Form>
|
|
</template>
|
|
|
|
<style lang="less" scoped>
|
|
:deep(.anticon) {
|
|
&:hover {
|
|
color: var(--el-color-primary) !important;
|
|
}
|
|
}
|
|
</style>
|