main
fanfan 2 months ago
parent fdd1bbd2f7
commit d2448ac16a
  1. 4
      src/config/router.config.js
  2. 2
      src/layouts/BasicLayout.vue

@ -148,8 +148,8 @@ export const asyncRouterMap = [
{
path: '/feedback/index',
component: () => import(/* webpackChunkName: "goods" */ '@/views/dataCenter/feedback/index'),
meta: { title: '意见反馈', keepAlive: false, permission: ['access'] }
}
meta: { title: '意见反馈', pageTitle: '意见反馈', keepAlive: false},
},
]
},

@ -105,6 +105,8 @@ export default {
}
this.menus[0].children.map((child, eq) => {
if (child.path == '/goods/category/index') this.menus[0].children.splice(eq, 1)
if (child.path == '/feedback/index') this.menus[0].children.splice(eq, 1)
if (child.path == '/course/index') this.menus[0].children.splice(eq, 2)
})
}
})

Loading…
Cancel
Save