From 39d21fe29dddf2daa60678cd74bd285045b83cbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=93=E6=99=93=E5=9D=A4?= Date: Fri, 25 Oct 2019 11:07:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=9D=E5=AD=98=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/ebiz/Department.js | 32 -------------------------------- src/router/ebiz/index.js | 3 +-- 2 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 src/router/ebiz/Department.js diff --git a/src/router/ebiz/Department.js b/src/router/ebiz/Department.js deleted file mode 100644 index 46b87d64a..000000000 --- a/src/router/ebiz/Department.js +++ /dev/null @@ -1,32 +0,0 @@ -const DepartInfo = () => import('@/views/ebiz/Department/DepartInfo') -const DepartInfoOne = () => import('@/views/ebiz/Department/DepartInfoOne') -const DepartInfoTwo = () => import('@/views/ebiz/Department/DepartInfoTwo') -export default [ - { - path: '/Department/DepartInfo', - name: 'DepartmentInformation', - component: DepartInfo, - meta: { - title: '入司基本信息' - }, - redirect: '/Department/DepartInfo/one', - children: [ - { - path: 'one', - name: 'DepartInfoOne', - component: DepartInfoOne, - meta: { - title: '入司基本信息one' - } - }, - { - path: 'Two', - name: 'DepartInfoTwo', - component: DepartInfoTwo, - meta: { - title: '入司基本信息' - } - } - ] - } -] diff --git a/src/router/ebiz/index.js b/src/router/ebiz/index.js index 7f8a7be5f..9be0c4106 100644 --- a/src/router/ebiz/index.js +++ b/src/router/ebiz/index.js @@ -6,5 +6,4 @@ import my from './my' import serve from './serve' import common from './common' import product from './product' -import Department from './Department' -export default [...proposal, ...sale, ...customer, ...my, ...serve, ...common, ...product, ...Department] //根据需要进行删减 +export default [...proposal, ...sale, ...customer, ...my, ...serve, ...common, ...product] //根据需要进行删减