mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
fix: 修复角色变化后页面权限没有更改
This commit is contained in:
parent
157c1d8caa
commit
bc53f08108
@ -89,6 +89,8 @@ const setRole = async (roleId) => {
|
||||
throw new Error("[plugin-access]: argument to the setRole() must be string or promise");
|
||||
}
|
||||
state.currentRoleId = roleId;
|
||||
const roleAccessIds = state.roles[roleId] || [];
|
||||
setAccess(roleAccessIds);
|
||||
};
|
||||
|
||||
const match = (path, accessIds) => {
|
||||
|
@ -27,10 +27,11 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { computed, ref, unref } from 'vue';
|
||||
import { computed, ref, unref, watch } from 'vue';
|
||||
import { FDropdown, FTabPane, FTabs } from '@fesjs/fes-design';
|
||||
import { MoreOutlined, ReloadOutlined } from '@fesjs/fes-design/icon';
|
||||
import { useRoute, useRouter } from '@@/core/coreExports';
|
||||
import { access } from '@fesjs/fes'
|
||||
import { transTitle } from '../helpers/pluginLocale';
|
||||
import { deleteTitle, getTitle } from '../useTitle';
|
||||
import { useLayout } from '../useLayout';
|
||||
@ -95,6 +96,15 @@ export default {
|
||||
return true;
|
||||
});
|
||||
|
||||
// 监听role变化,如果没有权限关闭当前页面
|
||||
watch(() => access.getRole(), async () => {
|
||||
const isAccess = await access.hasAccess(router.currentRoute.value.path)
|
||||
if(!isAccess) {
|
||||
handleCloseTab()
|
||||
router.push('/403')
|
||||
}
|
||||
})
|
||||
|
||||
// 还需要考虑参数
|
||||
const switchPage = async (path) => {
|
||||
const selectedPage = findPage(path);
|
||||
|
Loading…
x
Reference in New Issue
Block a user