mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-22 15:24:09 +00:00
fix:修复前台iframe菜单无法打开的问题 close #I6I00K
This commit is contained in:
parent
3da9e62f68
commit
5b96bc062a
@ -7,6 +7,7 @@ import { useMemberCenter } from '/@/stores/memberCenter'
|
||||
import { closeShade } from '/@/utils/pageShade'
|
||||
import { adminBaseRoute, memberCenterBaseRoute } from '/@/router/static'
|
||||
import { i18n } from '/@/lang/index'
|
||||
import { isAdminApp } from '/@/utils/common'
|
||||
|
||||
/**
|
||||
* 导航失败有错误消息的路由push
|
||||
@ -204,7 +205,7 @@ export const addRouteItem = (viewsComponent: Record<string, any>, route: any, pa
|
||||
let path = '',
|
||||
component
|
||||
if (route.menu_type == 'iframe') {
|
||||
path = '/admin/iframe/' + encodeURIComponent(route.url)
|
||||
path = (isAdminApp() ? '/admin' : '/user') + '/iframe/' + encodeURIComponent(route.url)
|
||||
component = () => import('/@/layouts/common/router-view/iframe.vue')
|
||||
} else {
|
||||
path = parentName ? route.path : '/' + route.path
|
||||
|
Loading…
Reference in New Issue
Block a user