b00b06ce by 任超

style:菜单

1 parent d7968354
...@@ -56,13 +56,14 @@ export const asyncRoutes = [ ...@@ -56,13 +56,14 @@ export const asyncRoutes = [
56 } 56 }
57 ] 57 ]
58 }, 58 },
59 // 接收报文查询 59 // // 接收报文查询
60 { 60 {
61 path: '/jsbwcx', 61 path: '/jsbwcx',
62 component: Layout, 62 component: Layout,
63 children: [ 63 children: [
64 { 64 {
65 path: 'index', 65 path: 'index',
66 component: () => import('@/views/jsbwcx/index'),
66 name: 'jsbwcx', 67 name: 'jsbwcx',
67 meta: { title: '接收报文查询', icon: 'zsgl' } 68 meta: { title: '接收报文查询', icon: 'zsgl' }
68 } 69 }
...@@ -325,7 +326,7 @@ export const asyncRoutes = [ ...@@ -325,7 +326,7 @@ export const asyncRoutes = [
325 const createRouter = () => 326 const createRouter = () =>
326 new Router({ 327 new Router({
327 scrollBehavior: () => ({ y: 0 }), 328 scrollBehavior: () => ({ y: 0 }),
328 routes: [...constantRoutes, ...asyncRoutes] 329 routes: [...constantRoutes]
329 }) 330 })
330 331
331 const router = createRouter() 332 const router = createRouter()
......