배치 모니터링 커밋

This commit is contained in:
Leeminha
2022-11-03 17:47:49 +09:00
parent 46bd508b8e
commit e2fd670cfc
19 changed files with 817 additions and 56 deletions

View File

@@ -2,6 +2,8 @@ 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'
export default [
{
@@ -28,6 +30,18 @@ export default [
name: 'authModify',
props: true,
meta: { public: false }
},
{
path: '/sysMgt/batchList',
component: BatchList,
name: 'batchList',
meta: { public: false }
},
{
path: '/sysMgt/batchDetail',
component: BatchDetail,
name: 'batchDetail',
meta: { public: false }
}
]