fix: 修复iot账号无法登录可视化

* fix: 优化oauth页面

* fix: 修复iot账号无法登录可视化
This commit is contained in:
XieYongHong 2023-04-27 17:57:19 +08:00 committed by GitHub
parent 9b138b0e6c
commit 056c694a92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 91 additions and 48 deletions

View File

@ -6,7 +6,7 @@ export default {
title: 'Jetlinks', // 浏览器标签页title title: 'Jetlinks', // 浏览器标签页title
layout: { layout: {
title: '物联网平台', // 平台title title: '物联网平台', // 平台title
logo: '/icons/icon-192x192.png', // 平台logo logo: '/logo.png', // 平台logo
siderWidth: 208, // 左侧菜单栏宽度 siderWidth: 208, // 左侧菜单栏宽度
headerHeight: 48, // 头部高度 headerHeight: 48, // 头部高度
collapsedWidth: 48, collapsedWidth: 48,

View File

@ -1,5 +1,5 @@
import { createRouter, createWebHashHistory } from 'vue-router' import { createRouter, createWebHashHistory } from 'vue-router'
import menus, { AccountCenterBindPath, InitHomePath, LoginPath } from './menu' import menus, { AccountCenterBindPath, InitHomePath, LoginPath, OauthPath } from './menu'
import { cleanToken, getToken } from '@/utils/comm' import { cleanToken, getToken } from '@/utils/comm'
import { useUserInfo } from '@/store/userInfo' import { useUserInfo } from '@/store/userInfo'
import { useSystem } from '@/store/system' import { useSystem } from '@/store/system'
@ -14,12 +14,13 @@ const router = createRouter({
} }
}) })
const filterPath = [ InitHomePath, AccountCenterBindPath ] const filterPath = [ InitHomePath ]
const noTokenPath = [ AccountCenterBindPath, OauthPath ]
router.beforeEach((to, from, next) => { router.beforeEach((to, from, next) => {
// TODO 切换路由取消请求 // TODO 切换路由取消请求
const token = getToken() const token = getToken()
if (to.path === AccountCenterBindPath) { if (noTokenPath.includes(to.path)) {
next() next()
} else if (token) { } else if (token) {
if (to.path === LoginPath) { if (to.path === LoginPath) {

View File

@ -13,7 +13,16 @@ interface AxiosResponseRewrite<T = any[]> extends AxiosResponse<T, any> {
export const SUCCESS_CODE = 200 // 成功代码 export const SUCCESS_CODE = 200 // 成功代码
const filterApiUrl = ['/system/version', '/system/config/front', '/authorize/captcha/config', '/application/sso/_all', '/authorize/captcha/image', '/application/sso/bind-code', '/authorize/login'] const filterApiUrl = [
'/system/version',
'/system/config/front',
'/authorize/captcha/config',
'/application/sso/_all',
'/authorize/captcha/image',
'/application/sso/bind-code',
'/authorize/login',
'/application/'
]
export const request = axios.create({ export const request = axios.create({
withCredentials: false, withCredentials: false,
@ -149,10 +158,10 @@ const errorHandler = (error: any) => {
} else if (status === 401) { } else if (status === 401) {
showNotification('Unauthorized', '用户未登录', '401') showNotification('Unauthorized', '用户未登录', '401')
setTimeout(() => { setTimeout(() => {
cleanToken() // cleanToken()
router.replace({ // router.replace({
path: LoginPath // path: LoginPath
}) // })
}, 0) }, 0)
} else if (status === 404) { } else if (status === 404) {
showNotification(error?.code, error?.response?.data?.message, '404') showNotification(error?.code, error?.response?.data?.message, '404')

View File

@ -14,6 +14,7 @@
<div class='oauth-content-header'> <div class='oauth-content-header'>
<img :src='headerImg' /> <img :src='headerImg' />
</div> </div>
<h2>授权登录</h2>
<div class='oauth-content-content'> <div class='oauth-content-content'>
<div class='oauth-content-content-text'> <div class='oauth-content-content-text'>
您正在授权登录, {{ appName }} 将获得以下权限: 您正在授权登录, {{ appName }} 将获得以下权限:
@ -32,15 +33,16 @@
<div class='oauth-content-header'> <div class='oauth-content-header'>
<img :src='headerImg' /> <img :src='headerImg' />
</div> </div>
<h2>授权登录</h2>
<div class='oauth-content-login'> <div class='oauth-content-login'>
<j-form layout='horizontal' size='large' :model='formModel' > <j-form layout='vertical' :model='formModel' ref='formRef' >
<j-form-item name='username'> <j-form-item label='用户名' name='username' required :rules='[{ required: true, message: "请输入用户名"}]'>
<j-input placeholder='用户名' v-model:value='formModel.username' /> <j-input placeholder='用户名' v-model:value='formModel.username' />
</j-form-item> </j-form-item>
<j-form-item name='password'> <j-form-item label='密码' name='password' required :rules='[{ required: true, message: "请输入密码"}]'>
<j-input-password placeholder='密码' v-model:value='formModel.password' /> <j-input-password placeholder='密码' v-model:value='formModel.password' />
</j-form-item> </j-form-item>
<j-form-item name='verifyCode' v-if='captcha.base64'> <j-form-item name='verifyCode' v-if='captcha.base64' required :rules='[{ required: true, message: "请输入验证码"}]'>
<j-input placeholder='请输入验证码' v-model:value='formModel.verifyCode' > <j-input placeholder='请输入验证码' v-model:value='formModel.verifyCode' >
<template #addonAfter> <template #addonAfter>
<img <img
@ -72,9 +74,10 @@
<script setup lang='ts' name='Oauth'> <script setup lang='ts' name='Oauth'>
import { TOKEN_KEY } from '@/utils/variable' import { TOKEN_KEY } from '@/utils/variable'
import { config, code, getOAuth2, initApplication, authLogin } from '@/api/login' import { config, code, getOAuth2, initApplication, authLogin, settingDetail } from '@/api/login'
import { getMe_api } from '@/api/home' import { getMe_api } from '@/api/home'
import { getImage } from '@/utils/comm' import { getImage, getToken } from '@/utils/comm'
import Config from '../../../config/config'
const spinning = ref(true) const spinning = ref(true)
const isLogin = ref(false) const isLogin = ref(false)
@ -85,6 +88,9 @@ const userName = ref('-')
const internal = ref('false') const internal = ref('false')
const params = ref() const params = ref()
document.title = `OAuth授权-${Config.title}`;
headerImg.value = getImage(Config.layout.logo)
type LoginParam = { type LoginParam = {
username: string; username: string;
password: string; password: string;
@ -104,13 +110,18 @@ const captcha = reactive<{base64?: string, key?: string }>({
key: undefined key: undefined
}) })
const formRef = ref()
const getApplication = async (clientId: string) => { const getApplication = async (clientId: string) => {
const res = await initApplication(clientId) const res = await initApplication(clientId)
if (res.success) { if (res.success && res.result) {
appName.value = res.result.name appName.value = res.result.name
} }
} }
/**
* 获取验证码配置
*/
const getCode = async () => { const getCode = async () => {
const resp = await config() const resp = await config()
if (resp.result?.enabled) { if (resp.result?.enabled) {
@ -138,6 +149,7 @@ const changeAccount = () => {
} }
const getLoginUser = async (data?: any) => { const getLoginUser = async (data?: any) => {
if (getToken()) { //
const res = await getMe_api() const res = await getMe_api()
if (res.success) { if (res.success) {
userName.value = res.result?.user.name userName.value = res.result?.user.name
@ -157,7 +169,12 @@ const getLoginUser = async (data?: any) => {
spinning.value = false spinning.value = false
}) })
} }
} else {
getApplication(data.client_id || params.value.client_id)
setTimeout(() => {
spinning.value = false
})
}
} }
const getQueryVariable = (variable: any) => { const getQueryVariable = (variable: any) => {
@ -172,23 +189,26 @@ const getQueryVariable = (variable: any) => {
return ''; return '';
} }
const doLogin = async () => { const doLogin = () => {
formRef.value.validate().then( async data => {
const res = await authLogin({ const res = await authLogin({
verifyKey: captcha.key, verifyKey: captcha.key,
...formModel ...formModel
}) })
if (res.success) { if (res.success) {
getLoginUser()
const token = res.result.token const token = res.result.token
localStorage.setItem(TOKEN_KEY, token) localStorage.setItem(TOKEN_KEY, token)
goOAuth2Fn() getLoginUser()
// goOAuth2Fn()
} else { } else {
getCode() getCode()
} }
})
} }
const initPage = async () => { const initPage = async () => {
let redirectUrl let redirectUrl
// url
const items = { const items = {
client_id: getQueryVariable('client_id'), client_id: getQueryVariable('client_id'),
state: getQueryVariable('state'), state: getQueryVariable('state'),
@ -202,9 +222,8 @@ const initPage = async () => {
const url = `${origin.join('/')}${items.redirect_uri?.split('redirect=')[1]}` const url = `${origin.join('/')}${items.redirect_uri?.split('redirect=')[1]}`
// redirectUrl = `${items.redirect_uri?.split('redirect_uri=')[0]}?redirect=${url}` // redirectUrl = `${items.redirect_uri?.split('redirect_uri=')[0]}?redirect=${url}`
redirectUrl = items.redirect_uri redirectUrl = items.redirect_uri
console.log(origin, items.redirect_uri)
} }
//
getLoginUser({ getLoginUser({
...items, ...items,
internal: getQueryVariable('internal'), internal: getQueryVariable('internal'),
@ -218,9 +237,22 @@ const initPage = async () => {
} }
} }
document.title = 'OAuth授权-jetlinks'; const getSettingDetail = () => {
headerImg.value = getImage('/logo.png') settingDetail('front').then((res: any) => {
if (res.status === 200) {
const ico: any = document.querySelector('link[rel="icon"]');
ico.href = res.result.ico;
headerImg.value = res.result.logo
if (res.result.title) {
document.title = `OAuth授权-${res.result.title}`;
} else {
document.title = 'OAuth授权';
}
}
});
}
getSettingDetail()
getCode() getCode()
initPage() initPage()
@ -309,7 +341,8 @@ initPage()
gap: 24px; gap: 24px;
} }
.oauth-content-login { .oauth-content-login {
max-width: 300px; width: 100%;
padding: 0 24px;
} }
} }
} }