시스템관리 - 권한관리, 고객관리 - 청약고객관리/회원관리 추가

This commit is contained in:
kimre
2022-06-09 21:36:05 +09:00
parent b832e1a0be
commit 940707deaa
113 changed files with 9134 additions and 2100 deletions

View File

@@ -1,5 +1,7 @@
import AustList from '../views/AuthList'
import AdminList from '../views/AdminList'
import AuthAdd from '../views/AuthAdd'
import AuthModify from '../views/AuthModify'
export default [
{
@@ -13,6 +15,19 @@ export default [
component: AdminList,
name: 'adminList',
meta: { public: true }
},
{
path: '/sysMgt/authAdd',
component: AuthAdd,
name: 'authAdd',
meta: { public: true }
},
{
path: '/sysMgt/authModify',
component: AuthModify,
name: 'authModify',
props: true,
meta: { public: true }
}
]