From ccd7b3c5b24fa115a732ea915e2e586de717ea1c Mon Sep 17 00:00:00 2001 From: “dzb” <2632970487@qq.com> Date: 星期一, 26 九月 2022 21:39:43 +0800 Subject: [PATCH] 完成logo管理 --- src/router/index.js | 99 +++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 95 insertions(+), 4 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index c6f1fe1..709b9f6 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -63,18 +63,99 @@ path: 'baseSetting', name: 'baseSetting', component: () => import('@/views/operate/baseSetting'), + children: [ + { + path: "violation", + name: 'violation', + component: () => import('@/views/operate/baseSetting/violation'), + }, + { + path: "illegalBuild", + name: 'illegalBuild', + component: () => import('@/views/operate/baseSetting/illegalBuild'), + }, + { + path: "threepack", + name: 'threepack', + component: () => import('@/views/operate/baseSetting/threepack'), + } + ] }, { path: 'casepool', name: 'casepool', - component: () => import('@/views/operate/disposal/casepool'), + component: () => import('@/views/operate/disposal'), children: [ + { + path: 'pool', + name: 'pool', + component: () => import('@/views/operate/disposal/casepool/pool'), + }, { path: 'escalation', name: 'escalation', - component: () => import('@/views/operate/disposal/escalation'), + component: () => import('@/views/operate/disposal/casepool/escalation'), + }, + { + path: 'dispatch', + name: 'dispatch', + component: () => import('@/views/operate/disposal/casepool/dispatch'), + }, + { + path: 'notDeal', + name: 'notDeal', + component: () => import('@/views/operate/disposal/casepool/notDeal'), + }, + ] + }, + { + path: "fivepack", + name: 'fivepack', + component: () => import('@/views/operate/fivepack'), + children: [ + { + path: "shop", + name: 'shop', + component: () => import('@/views/operate/fivepack/shop'), + }, + { + path: "threepackage", + name: 'threepackage', + component: () => import('@/views/operate/fivepack/threepack'), } ] + }, + { + path: 'myWait', + name: 'myWait', + component: () => import('@/views/operate/myWait'), + }, + { + path: 'rectification', + name: 'rectification', + component: () => import('@/views/operate/rectification'), + children:[ + { + path:"taskList", + name:'taskList', + component: () => import('@/views/operate/rectification/taskList'), + }, + { + path:"surveyList", + name:'surveyList', + component: () => import('@/views/operate/rectification/surveyList'), + }, + { + path:"renovationList", + name:'renovationList', + component: () => import('@/views/operate/rectification/renovationList'), + } + ] + }, + { + path:'lawEnforcement', + name:'lawEnforcement', + component:()=>import('@/views/operate/lawEnforcement') } ] }, @@ -118,9 +199,19 @@ { path: '/404', name: "404", - component: () => import('@/views/NotFound'), + component: () => import('@/views/info/NotFound'), }, - // { path: '*', redirect: '/404' } + { + path: '/fail', + name: "/fail", + component: () => import('@/views/info/Fail'), + }, + { + path: '/success', + name: "/success", + component: () => import('@/views/info/Success'), + }, + { path: '*', redirect: '/404' } ] const router = new VueRouter({ -- Gitblit v1.8.0