feat:returnUrl编码

This commit is contained in:
lixg
2023-03-07 22:23:54 +08:00
parent 14c787445a
commit c68a2ea1af
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
* @Author: lixg lixg@dongwu-inc.com
* @Date: 2023-02-08 09:50:10
* @LastEditors: lixg lixg@dongwu-inc.com
* @LastEditTime: 2023-03-07 16:43:57
* @LastEditTime: 2023-03-07 21:52:35
* @FilePath: /stu_h5/src/router/index.js
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
@@ -28,7 +28,7 @@ router.beforeEach((to, from, next) => {
if (import.meta.env.MODE === "development" || import.meta.env.MODE === "test") {
to.path.includes('/login') ? next() : next({ path: '/login', query: { returnUrl: to.fullPath } })
} else {
window.location.href = window.location.protocol + import.meta.env.VITE_BASE_LOGIN_URL + window.location.protocol + import.meta.env.VITE_BOE_BASE_URL + import.meta.env.VITE_BASE + to.fullPath
window.location.href = window.location.protocol + import.meta.env.VITE_BASE_LOGIN_URL + encodeURI(window.location.protocol + import.meta.env.VITE_BOE_BASE_URL + import.meta.env.VITE_BASE + to.fullPath)
}
}
next()