VUE動態路由和按鈕的實現

青衫凉薄提笔發表於2024-08-03

動態路由

動態選單

//透過迴圈元件完成動態選單
 <el-menu active-text-color="#ffd04b" background-color="#545c64" class="el-menu-vertical-demo" text-color="#fff"
        :collapse="isCollapse" router default-active style="width: auto;">
        <el-menu-item index="99">
            <img src="@/assets/logo.svg" width="18" />
            <span style="font-weight: bold;">TMS使用者管理系統</span>
        </el-menu-item>
        <el-menu-item index="/Main">
            <el-icon>
                <HomeFilled />
            </el-icon>
            <span>首頁</span>
        </el-menu-item>
        <RecursiveMenuItem :apidto="apidto" />
        <el-menu-item
            @click="isCollapse = !isCollapse; isCollapse == true ? iconSwitch = 'Expand' : iconSwitch = 'Fold'">
            <el-icon style="font-size: 20px;">
                <component :is="iconSwitch"></component>
            </el-icon>
            <span>展開</span>
        </el-menu-item>
    </el-menu>
//子元件
 <template v-for="item in props.apidto" key="item">
        <el-sub-menu v-if="item.children && item.children.length > 0" :index="item.mName" :key="item">
            <template #title>
                <el-icon>
                    <component :is="item.mIcol" />
                </el-icon>
                <span>{{ item.mName }}</span>
            </template>
            <RecursiveMenuItem :apidto="item.children" /> <!-- 遞迴呼叫自身 -->
        </el-sub-menu>
        <el-menu-item v-else :index="item.roUrl">
            <el-icon>
                <component :is="item.mIcol" />
            </el-icon>
            <span>{{ item.mName }}</span>
        </el-menu-item>
    </template>

動態路由

import router from '@/router/index'
const modules = import.meta.glob('../views/**/*.vue')
//導航守衛+動態路由
//to是要跳轉到的頁面
//form是跳轉前的頁面
//next是不做任何阻攔允許跳轉
router.beforeEach((to, from, next) => {
    //pinia中獲取使用者登入狀態
    const CounterStore = useCounterStore();
    //是否為登入狀態,並且令牌不為空
    if (CounterStore.isLogin && localStorage.getItem('token')) {
        //如果路由是登入頁面則跳轉到主頁
        if (to.path === '/') {
            next({
                path: '/Main'
            })
        }
        //不為登入頁面
        else {
            //如果路由不存在則新增路由
            if (to.name === undefined) {
                const routes = JSON.parse(localStorage.getItem('apidto') as string);
                addRoutesRecursively(routes);
                next({ ...to, replace: true })
            }
            next();
        }
    }
    //如果沒有登入
    else {
        if (to.path === '/') {
            next()
        }
        else {
            next({
                path: '/'
            })
        }
    }
})
//遞迴獲取使用者
function addRoutesRecursively(routes: any[]) {
    routes.forEach((route) => {
        // 假設 route 可能包含 children 屬性  
        if (route.children) {
            // 遞迴呼叫自身來處理 children  
            addRoutesRecursively(route.children);
        }
        // 新增當前路由
        else {
            router.addRoute('Main', {
                path: route.roUrl,
                name: route.roName,
                component: modules['../views' + route.moUrl] // 注意這裡可能需要根據實際情況調整路徑拼接方式  
            });
        }
    });
}

動態按鈕

//pinia狀態管理	
import { useUserStore } from '../stores/User'
import type { Directive, DirectiveBinding } from "vue";

//許可權按鈕自定義事件

export const hasPerm: Directive = {
    mounted(el: HTMLElement, binding: DirectiveBinding) {
        // DOM繫結需要的按鈕許可權標識
        const { value: requiredPerms } = binding;
        if (requiredPerms) {
            if (!hasAuth(requiredPerms)) {
                el.parentNode && el.parentNode.removeChild(el);
            }
        } else {
            throw new Error(
                "你沒有許可權"
            );
        }
    },
};

// 是否有許可權
function hasAuth(
    value: string | string[],
    type: "button" | "role" = "button"//約束type只能為button或role,同時賦值預設值button
) {
    //獲取賬號下的角色和許可權
    const userStore = useUserStore();
    const { roles, perms } = userStore.users;
    //「終極管理員」擁有所有的按鈕許可權
    if (type === "button" && roles.includes("終極管理員")) {
        return true;
    }
    //判斷是否獲取的是按鈕許可權,否則獲取角色許可權
    const auths = type === "button" ? perms : roles;
    //判斷使用者value是一堆角色還是單個角色
    return typeof value === "string"
        ? auths.includes(value)//判斷使用者是否有這個許可權
        : auths.some((perm) => {
            return value.includes(perm);//查詢需要的許可權是否擁有,可能是一個按鈕可以有好幾個角色訪問
        });
}

//Main中註冊
//註冊全域性自定義指令
app.directive("hasPerm", hasPerm);


相關文章