diff --git a/frontend/src/App.vue b/frontend/src/App.vue index d6f4130ea..ec51dac30 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -495,6 +495,11 @@ .main-scroller { height: calc(100% + 91px); } + .my-perm-container { + .main-scroller { + height: calc(100% + 51px); + } + } .user-org-perm-container { .main-scroller { height: calc(100% + 312px); diff --git a/frontend/src/common/router-handle.js b/frontend/src/common/router-handle.js index 8bb1d1f28..342c54bc5 100644 --- a/frontend/src/common/router-handle.js +++ b/frontend/src/common/router-handle.js @@ -298,7 +298,6 @@ export const getNavRouterDiff = (navIndex, managerPerm = '') => { 'addGroupPerm', 'resourcePermiss', 'ratingManager', - 'gradingAdminCreate', 'gradingAdminDetail', 'gradingAdminEdit', 'gradingAdminUpdateTemplate', diff --git a/frontend/src/components/header-nav/index.vue b/frontend/src/components/header-nav/index.vue index 445307f0f..43a9ab64a 100644 --- a/frontend/src/components/header-nav/index.vue +++ b/frontend/src/components/header-nav/index.vue @@ -664,10 +664,7 @@ window.localStorage.removeItem('iam-header-title-cache'); window.localStorage.removeItem('iam-header-name-cache'); window.localStorage.removeItem('applyGroupList'); - const loginUrl = new URL(`${window.LOGIN_SERVICE_URL}/`); - loginUrl.searchParams.append('c_url', encodeURIComponent(window.location.href)); - loginUrl.searchParams.append('is_from_logout', 1); - window.location = loginUrl.href; + window.location = `${window.LOGIN_SERVICE_URL}/?c_url=${encodeURIComponent(window.location.href)}&is_from_logout=1`; }, handleManager () { diff --git a/frontend/src/store/index.js b/frontend/src/store/index.js index 2e16120b8..e318cc55f 100644 --- a/frontend/src/store/index.js +++ b/frontend/src/store/index.js @@ -471,7 +471,8 @@ const store = new Vuex.Store({ // 设置项目最大可授权范围 addMemberBoundary: { customFooterClass: false, // 设置项目最大可授权范围, 底部插槽自定义样式 - hideInfiniteTreeCount: false // 隐藏设置项目最大可授权范围左边拓扑树显示成员个数 + hideInfiniteTreeCount: false, // 隐藏设置项目最大可授权范围左边拓扑树显示成员个数 + hideScopeRangeEntry: false // 隐藏跳转到授权边界页面入口 } }, curTreeTableDataIndex: 0, @@ -950,7 +951,8 @@ const store = new Vuex.Store({ // 设置项目最大可授权范围 addMemberBoundary: { customFooterClass: true, // 设置项目最大可授权范围, 底部插槽自定义样式 - hideInfiniteTreeCount: true// 隐藏设置项目最大可授权范围左边拓扑树显示成员个数 + hideInfiniteTreeCount: true, // 隐藏设置项目最大可授权范围左边拓扑树显示成员个数 + hideScopeRangeEntry: true // 隐藏跳转到授权边界页面入口 } }; commit('setExternalSystemsLayout', externalSystemsLayout); diff --git a/frontend/src/views/group/components/iam-add-member.vue b/frontend/src/views/group/components/iam-add-member.vue index 04a2acb72..b51668839 100644 --- a/frontend/src/views/group/components/iam-add-member.vue +++ b/frontend/src/views/group/components/iam-add-member.vue @@ -196,7 +196,7 @@

{{ $t(`m.common['手动输入提示1']`) }}

{{ $t(`m.common['手动输入提示2']`) }} -