123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- <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, getTestRoleApi, getAdminRoleApi } 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)
- await formRef?.validate(async (isValid) => {
- if (isValid) {
- loading.value = true
- const { getFormData } = methods
- const formData = await getFormData<UserLoginType>()
- const res = await loginApi(formData)
- .catch(() => {})
- .finally(() => (loading.value = false))
- if (res) {
- const { wsCache } = useCache()
- wsCache.set(appStore.getUserInfo, res.data)
- getRole()
- }
- }
- })
- }
- // 获取角色信息
- const getRole = async () => {
- const { getFormData } = methods
- const formData = await getFormData<UserLoginType>()
- const params = {
- roleName: formData.username
- }
- // admin - 模拟后端过滤菜单
- // test - 模拟前端过滤菜单
- const res =
- formData.username === 'admin'
- ? await getAdminRoleApi({ params })
- : await getTestRoleApi({ params })
- if (res) {
- const { wsCache } = useCache()
- const routers = res.data.list || []
- wsCache.set('roleRouters', routers)
- formData.username === 'admin'
- ? await permissionStore.generateRoutes('admin', routers).catch(() => {})
- : await permissionStore.generateRoutes('test', routers).catch(() => {})
- permissionStore.getAddRouters.forEach((route) => {
- addRoute(route as RouteRecordRaw) // 动态添加可访问路由表
- })
- permissionStore.setIsAddRouters(true)
- push({ path: redirect.value || 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>
|