From 7883b34d88b13f9cb7a676ea2fec04122a2714b5 Mon Sep 17 00:00:00 2001 From: "tian.guangyuan" Date: Fri, 27 Mar 2020 14:02:59 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90fix=E3=80=91=20=E6=B7=BB=E5=8A=A0=20?= =?UTF-8?q?=E4=BA=BA=E5=8F=91=E7=B3=BB=E7=BB=9F=20-=20DISC=E6=80=A7?= =?UTF-8?q?=E6=A0=BC=E5=88=86=E6=9E=90=20=E8=B7=AF=E7=94=B1=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/ebiz/manpower.js | 47 ++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/src/router/ebiz/manpower.js b/src/router/ebiz/manpower.js index c7d0fc0d3..8108bc5f6 100644 --- a/src/router/ebiz/manpower.js +++ b/src/router/ebiz/manpower.js @@ -19,6 +19,11 @@ const TalentPoolEdit = () => import('@/views/ebiz/manpower/talentPool/Edit') const ActivityLogList = () => import('@/views/ebiz/manpower/activityLog/List') const ActivityLogEdit = () => import('@/views/ebiz/manpower/activityLog/Edit') +const DiscAnalysisList = () => import('@/views/ebiz/manpower/DiscAnalysis/List') +const DiscAnalysisQuestion = () => import('@/views/ebiz/manpower/DiscAnalysis/Question') +const DiscAnalysisResult = () => import('@/views/ebiz/manpower/DiscAnalysis/Result') +const DiscAnalysisShare = () => import('@/views/ebiz/manpower/DiscAnalysis/Share') + export default [{ // 人力发展 path: '/manpower/Navigation', @@ -148,5 +153,45 @@ export default [{ title: '日志详情', index: 100 } - } + }, + { + // DISC性格分析 + path: '/manpower/DiscAnalysis/List', + name: 'DiscAnalysisList', + component: DiscAnalysisList, + meta: { + title: 'DISC性格分析', + index: 200 + } + }, + { + // DISC性格分析结果 + path: '/manpower/DiscAnalysis/Result', + name: 'DiscAnalysisResult', + component: DiscAnalysisResult, + meta: { + title: 'DISC性格分析结果', + index: 201 + } + }, + { + // DISC性格分析 分享 + path: '/manpower/DiscAnalysis/Share', + name: 'DiscAnalysisShare', + component: DiscAnalysisShare, + meta: { + title: 'DISC性格分析', + index: 202 + } + }, + { + // DISC性格分析结果 -做题 + path: '/manpower/DiscAnalysis/Question', + name: 'DiscAnalysisQuestion', + component: DiscAnalysisQuestion, + meta: { + title: 'DISC性格分析结果', + index: 203 + } + } ]