mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-06 18:13:18 +09:00
55 lines
1.3 KiB
JavaScript
55 lines
1.3 KiB
JavaScript
import AustList from '../views/AuthList'
|
|
import AdminList from '../views/AdminList'
|
|
import AuthAdd from '../views/AuthAdd'
|
|
import AuthModify from '../views/AuthModify'
|
|
import BatchList from '../views/BatchList'
|
|
import BatchDetail from '../views/BatchDetail'
|
|
import NotiList from '../views/NotiList'
|
|
|
|
export default [
|
|
{
|
|
path: '/sysMgt/authList',
|
|
component: AustList,
|
|
name: 'authList',
|
|
meta: { public: false }
|
|
},
|
|
{
|
|
path: '/sysMgt/adminList',
|
|
component: AdminList,
|
|
name: 'adminList',
|
|
meta: { public: false }
|
|
},
|
|
{
|
|
path: '/sysMgt/authAdd',
|
|
component: AuthAdd,
|
|
name: 'authAdd',
|
|
meta: { public: false }
|
|
},
|
|
{
|
|
path: '/sysMgt/authModify',
|
|
component: AuthModify,
|
|
name: 'authModify',
|
|
props: true,
|
|
meta: { public: false }
|
|
},
|
|
{
|
|
path: '/sysMgt/batchList',
|
|
component: BatchList,
|
|
name: 'batchList',
|
|
meta: { public: false }
|
|
},
|
|
{
|
|
path: '/sysMgt/batchDetail/:batchId',
|
|
component: BatchDetail,
|
|
name: 'batchDetail',
|
|
meta: { public: false }
|
|
},
|
|
{
|
|
path: '/sysMgt/notiList',
|
|
component: NotiList,
|
|
name: 'notiList',
|
|
meta: { public: false }
|
|
}
|
|
]
|
|
|