UnisKB/ui/src/views/login/index.vue

231 lines
6.0 KiB
Vue
Raw Normal View History

2023-09-15 09:40:35 +00:00
<template>
2024-07-23 10:21:46 +00:00
<login-layout v-if="user.isEnterprise() ? user.themeInfo : true" v-loading="loading">
2024-09-10 02:39:08 +00:00
<LoginContainer :subTitle="user.themeInfo?.slogan || '欢迎使用 MaxKB 智能知识库问答系统'">
2024-07-11 06:44:18 +00:00
<h2 class="mb-24">{{ loginMode || '普通登录' }}</h2>
2023-12-14 08:24:10 +00:00
<el-form
class="login-form"
:rules="rules"
:model="loginForm"
ref="loginFormRef"
@keyup.enter="login"
2023-12-14 08:24:10 +00:00
>
2024-02-23 03:37:37 +00:00
<div class="mb-24">
<el-form-item prop="username">
<el-input
size="large"
class="input-item"
v-model="loginForm.username"
placeholder="请输入用户名"
2024-02-23 03:37:37 +00:00
>
</el-input>
</el-form-item>
</div>
<div class="mb-24">
<el-form-item prop="password">
<el-input
type="password"
size="large"
class="input-item"
v-model="loginForm.password"
placeholder="请输入密码"
show-password
2024-02-23 03:37:37 +00:00
>
</el-input>
</el-form-item>
</div>
2023-10-12 08:36:16 +00:00
</el-form>
2024-02-23 03:37:37 +00:00
<el-button size="large" type="primary" class="w-full" @click="login"></el-button>
2023-12-12 03:32:45 +00:00
<div class="operate-container flex-between mt-12">
2024-03-21 06:19:01 +00:00
<!-- <el-button class="register" @click="router.push('/register')" link type="primary">
2023-10-12 08:36:16 +00:00
注册
2024-03-21 06:19:01 +00:00
</el-button> -->
2023-10-12 08:36:16 +00:00
<el-button
class="forgot-password"
@click="router.push('/forgot_password')"
link
type="primary"
2023-10-12 08:36:16 +00:00
>
2024-02-23 03:37:37 +00:00
忘记密码?
2023-10-12 08:36:16 +00:00
</el-button>
</div>
2024-07-11 06:44:18 +00:00
2024-07-11 11:51:28 +00:00
<div class="login-gradient-divider lighter mt-24" v-if="modeList.length > 1">
2024-07-11 06:44:18 +00:00
<span>更多登录方式</span>
</div>
<div class="text-center mt-16">
2024-07-11 11:51:28 +00:00
<template v-for="item in modeList">
<el-button
v-if="item !== '' && loginMode !== item"
circle
:key="item"
class="login-button-circle color-secondary"
@click="changeMode(item)"
>{{ item }}
2024-07-11 11:51:28 +00:00
</el-button>
<el-button
v-if="item === '' && loginMode !== ''"
circle
:key="item"
class="login-button-circle color-secondary"
style="font-size: 24px"
icon="UserFilled"
@click="changeMode('')"
2024-07-11 11:51:28 +00:00
/>
</template>
</div>
2023-10-12 08:36:16 +00:00
</LoginContainer>
</login-layout>
2023-09-15 09:40:35 +00:00
</template>
<script setup lang="ts">
import {onMounted, ref, onBeforeMount} from 'vue'
import type {LoginRequest} from '@/api/type/user'
import {useRouter} from 'vue-router'
import type {FormInstance, FormRules} from 'element-plus'
2023-10-19 10:18:45 +00:00
import useStore from '@/stores'
import authApi from "@/api/auth-setting";
import {MsgConfirm, MsgSuccess} from "@/utils/message";
import {t} from "@/locales";
import systemKeyApi from "@/api/system-api-key";
2023-09-15 09:40:35 +00:00
2023-10-12 08:36:16 +00:00
const loading = ref<boolean>(false)
const {user} = useStore()
2023-09-15 09:40:35 +00:00
const router = useRouter()
const loginForm = ref<LoginRequest>({
2023-10-12 08:36:16 +00:00
username: '',
password: ''
})
2023-09-15 09:40:35 +00:00
const rules = ref<FormRules<LoginRequest>>({
2023-10-12 08:36:16 +00:00
username: [
{
required: true,
message: '请输入用户名',
trigger: 'blur'
}
],
password: [
{
required: true,
message: '请输入密码',
trigger: 'blur'
2024-03-21 06:19:01 +00:00
}
2023-10-12 08:36:16 +00:00
]
2023-09-15 09:40:35 +00:00
})
const loginFormRef = ref<FormInstance>()
2024-07-16 09:32:27 +00:00
const modeList = ref<string[]>([''])
2024-07-11 06:44:18 +00:00
const loginMode = ref('')
function redirectAuth(authType: string) {
if (authType === 'LDAP' || authType === '') {
return;
}
authApi.getAuthSetting(authType, loading).then((res: any) => {
if (!res.data) {
return;
}
MsgConfirm(
`${t('login.jump_tip')}`,
t(''),
{
confirmButtonText: t('login.jump'),
cancelButtonText: t('views.applicationOverview.appInfo.APIKeyDialog.cancel'),
confirmButtonClass: ''
}
)
.then(() => {
if (!res.data.config_data) {
return;
}
const config = res.data.config_data
const redirectUrl = eval(`\`${config.redirectUrl}\``);
let url;
if (authType === 'CAS') {
url = `${config.ldpUri}?service=${encodeURIComponent(redirectUrl)}`;
}
if (authType === 'OIDC') {
url = `${config.authEndpoint}?client_id=${config.clientId}&redirect_uri=${redirectUrl}&response_type=code&scope=openid+profile+email`;
}
if (url) {
window.location.href = url;
}
})
.catch(() => {
})
});
}
2024-07-11 06:44:18 +00:00
function changeMode(val: string) {
loginMode.value = val === 'LDAP' ? val : '';
2024-07-11 06:44:18 +00:00
loginForm.value = {
username: '',
password: ''
}
redirectAuth(val)
2024-07-11 06:44:18 +00:00
loginFormRef.value?.clearValidate()
}
2023-09-15 09:40:35 +00:00
const login = () => {
2023-10-12 08:36:16 +00:00
loginFormRef.value?.validate().then(() => {
loading.value = true
2023-10-19 10:18:45 +00:00
user
.login(loginMode.value, loginForm.value.username, loginForm.value.password)
.then(() => {
router.push({name: 'home'})
})
.finally(() => (loading.value = false))
2023-10-12 08:36:16 +00:00
})
2023-09-15 09:40:35 +00:00
}
2024-07-11 11:51:28 +00:00
onMounted(() => {
user.asyncGetProfile().then((res) => {
2024-07-30 03:02:49 +00:00
if (user.isEnterprise()) {
2024-07-11 11:51:28 +00:00
loading.value = true
2024-07-16 09:32:27 +00:00
user
.getAuthType()
.then((res) => {
modeList.value = [...modeList.value, ...res]
})
.finally(() => (loading.value = false))
2024-07-11 11:51:28 +00:00
}
})
})
2024-07-23 10:21:46 +00:00
onBeforeMount(() => {
if (user.isEnterprise()) {
user.theme(loading)
}
})
2023-09-15 09:40:35 +00:00
</script>
2024-07-11 06:44:18 +00:00
<style lang="scss" scope>
.login-gradient-divider {
position: relative;
text-align: center;
color: var(--el-color-info);
::before {
content: '';
width: 25%;
height: 1px;
background: linear-gradient(90deg, rgba(222, 224, 227, 0) 0%, #dee0e3 100%);
position: absolute;
left: 16px;
top: 50%;
}
::after {
content: '';
width: 25%;
height: 1px;
background: linear-gradient(90deg, #dee0e3 0%, rgba(222, 224, 227, 0) 100%);
position: absolute;
right: 16px;
top: 50%;
}
}
2024-07-11 11:51:28 +00:00
2024-07-11 06:44:18 +00:00
.login-button-circle {
padding: 25px !important;
}
</style>