修改代码:permission.ts

文件位置:D:\chengchen\src\PrototypeCode\vben_client\src\store\modules\permission.ts

代码修改为:

增加动态菜单获取方法:

    // 构建菜单,从后端菜单API获取数据构建菜单
    buildMenusByServer() {
      const menus = axios
        .get('http://127.0.0.1:8000/menu/get_menu/')
        .then((response) => {
          const menuList = response.data;
          return menuList;
        })
        .catch((error) => {
          console.error(error);
        });

      menus.then((menuList) => {
        // 设置菜单列表
        this.setFrontMenuList(menuList);
      });
    },

 

 

Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐