调查问卷

This commit is contained in:
X1627315083
2024-07-29 17:30:39 +08:00
parent d876432ac6
commit 82a05c4813
18 changed files with 897 additions and 149 deletions

View File

@@ -117,6 +117,11 @@ const routes: Array<RouteRecordRaw> = [
name: 'administrator',
component: _import('Administrator'),
children:[
{
path: "",
name:'adminChil',
redirect: "/administrator/allUser"
},
{
path:'allUser',
name:'allUser',
@@ -131,6 +136,10 @@ const routes: Array<RouteRecordRaw> = [
path:'trialApproval',
name:'trialApproval',
component: _import_component('Administrator/trialApproval.vue'),
},{
path:'questionnaire',
name:'questionnaire',
component: _import_component('Administrator/questionnaire.vue'),
},
]
},
@@ -234,7 +243,6 @@ router.beforeEach((to, from, next) => {
let sSystemUser = false
for (let index = 0; index < isSystemUserRouteList.length; index++) {
if(to.path.indexOf(isSystemUserRouteList[index]) > -1){
sSystemUser = true
break
}