mirror of
https://github.com/dataease/dataease.git
synced 2026-05-14 21:12:33 +08:00
fix: 修复部分公共链接参数移动端出现编码错误提示 (#17792)
This commit is contained in:
@@ -61,7 +61,7 @@ router.beforeEach(async (to, from, next) => {
|
||||
if (toPath.includes('?')) {
|
||||
toPath = to.fullPath.substring(0, to.fullPath.lastIndexOf('?'))
|
||||
}
|
||||
window.location.href = prefix + '/mobile.html#' + toPath + linkQuery
|
||||
window.location.href = (prefix + '/mobile.html#' + toPath + linkQuery).replace(/\+/g, '%2B')
|
||||
} else if (
|
||||
wsCache.get('user.token') ||
|
||||
isDesktop ||
|
||||
|
||||
Reference in New Issue
Block a user