兰宝车间质量管理系统-前端
疯狂的狮子Li
2023-10-25 6ad0ed531652bf7fc3c92324ad2a48bf9ceb8950
update 优化 去掉多余的参数
已修改1个文件
4 ■■■■ 文件已修改
src/components/HeaderSearch/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/HeaderSearch/index.vue
@@ -88,7 +88,7 @@
}
// Filter out the routes that can be displayed in the sidebar
// And generate the internationalized title
const generateRoutes = (routes: RouteOption[], basePath = '', prefixTitle: string[] = [], query: any = {}) => {
const generateRoutes = (routes: RouteOption[], basePath = '', prefixTitle: string[] = []) => {
  let res: Router = []
  routes.forEach(r => {
    // skip hidden router
@@ -114,7 +114,7 @@
      // recursive child routes
      if (r.children) {
        const tempRoutes = generateRoutes(r.children, data.path, data.title, data.query);
        const tempRoutes = generateRoutes(r.children, data.path, data.title);
        if (tempRoutes.length >= 1) {
          res = [...res, ...tempRoutes];
        }