fix: 修复角色变化后页面权限没有更改

This commit is contained in:
kesonlin 2024-01-18 17:14:57 +08:00
parent 157c1d8caa
commit bc53f08108
2 changed files with 13 additions and 1 deletions

View File

@ -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) => {

View File

@ -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);