AdminRouter.js 821 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15

import Sysparam from "./Sysparam/Dblparam";
import Dblbch1 from "./Bch1/Dblbch/views";
import Dblmenu from "./Menu/Dblmenu/views";
import Dblbch from "./Bch/Dblbch";
import Dblrole from "./Role/Dblrole";
const AdminRouter = [
  { path: 'Sysparam', component: Sysparam, name: 'Sysparam', meta: { keepAlive: true, title: '系统参数查询' } },
  { path: 'DblBch', component: Dblbch, name: 'DblBch', meta: { keepAlive: true, title: '机构查询v1.0' } },
  { path: 'DblBch1', component: Dblbch1, name: 'DblBch1', meta: { keepAlive: true, title: '机构查询v1.1' } },
  { path: 'Dblmenu', component: Dblmenu, name: 'Dblmenu', meta: { keepAlive: true, title: '菜单查询' } },
  { path: 'Dblrole', component: Dblrole, name: 'Dblrole', meta: { keepAlive: true, title: '角色查询' } },
]

export default AdminRouter