From b4dde3d27415811c7f5f41efbb7aa8d386dba46e Mon Sep 17 00:00:00 2001 From: yuweiqi Date: Tue, 7 Apr 2020 16:02:56 +0800 Subject: [PATCH] =?UTF-8?q?[FIX]=E6=9B=B4=E6=94=B9=E4=BF=9D=E5=85=A8?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E8=B7=AF=E7=94=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/ebiz/index.js | 18 +++++++++++++++++- src/router/ebiz/preserve.js | 4 ++-- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/src/router/ebiz/index.js b/src/router/ebiz/index.js index 814fb95aa..24a71ace8 100644 --- a/src/router/ebiz/index.js +++ b/src/router/ebiz/index.js @@ -12,4 +12,20 @@ import poster from './poster' import report from './report' import survey from './survey' import nbs from './nbs' -export default [...proposal, ...sale, ...customer, ...my, ...serve, ...common, ...product, ...agentEenter, ...milestone, ...poster, ...report, ...survey, ...nbs] //根据需要进行删减 +import preserve from './preserve' +export default [ + ...proposal, + ...sale, + ...customer, + ...my, + ...serve, + ...common, + ...product, + ...agentEenter, + ...milestone, + ...poster, + ...report, + ...survey, + ...nbs, + ...preserve +] //根据需要进行删减 diff --git a/src/router/ebiz/preserve.js b/src/router/ebiz/preserve.js index 2eb8ed29d..904e25f3b 100644 --- a/src/router/ebiz/preserve.js +++ b/src/router/ebiz/preserve.js @@ -8,8 +8,8 @@ const renewalInfo = () => import('@/views/ebiz/preserve/RenewalInfo') const renewalConfirmation = () => import('@/views/ebiz/preserve/RenewalConfirmation') const contactInfo = () => import('@/views/ebiz/preserve/ContactInfo') const contactConfirmation = () => import('@/views/ebiz/preserve/ContactConfirmation') -const beneficiaryInfo = () => import('@/views/ebiz/preserve/beneficiaryInfo') -const beneficiaryConfirmation = () => import('@/views/ebiz/preserve/beneficiaryConfirmation') +const beneficiaryInfo = () => import('@/views/ebiz/preserve/BeneficiaryInfo') +const beneficiaryConfirmation = () => import('@/views/ebiz/preserve/BeneficiaryConfirmation') const surrenderInfo = () => import('@/views/ebiz/preserve/SurrenderInfo') const surrenderConfirmation = () => import('@/views/ebiz/preserve/SurrenderConfirmation')