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')