mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 03:26:45 +08:00
Merge branch 'feature/GFRS-217【待确定】保全-续期账号变更' of http://112.124.100.131/GFRS/ebiz-h5 into feature/GFRS-219【待确定】保全-退保
# Conflicts: # src/router/ebiz/index.js # src/views/app/Home.vue
This commit is contained in:
0
src/api/ebiz/preserve/preserve.js
Normal file
0
src/api/ebiz/preserve/preserve.js
Normal file
@@ -13,4 +13,21 @@ import report from './report'
|
||||
import survey from './survey'
|
||||
import nbs from './nbs'
|
||||
import manpower from './manpower'
|
||||
export default [...proposal, ...sale, ...customer, ...my, ...serve, ...common, ...product, ...agentEenter, ...milestone, ...poster, ...report, ...survey, ...nbs, ...manpower] //根据需要进行删减
|
||||
import preserve from './preserve'
|
||||
export default [
|
||||
...proposal,
|
||||
...sale,
|
||||
...customer,
|
||||
...my,
|
||||
...serve,
|
||||
...common,
|
||||
...product,
|
||||
...agentEenter,
|
||||
...milestone,
|
||||
...poster,
|
||||
...report,
|
||||
...survey,
|
||||
...nbs,
|
||||
...manpower
|
||||
...preserve
|
||||
] //根据需要进行删减
|
||||
|
||||
144
src/router/ebiz/preserve.js
Normal file
144
src/router/ebiz/preserve.js
Normal file
@@ -0,0 +1,144 @@
|
||||
//保全 定义相关组件
|
||||
const search = () => import('@/views/ebiz/preserve/Search')
|
||||
const imageUpload = () => import('@/views/ebiz/preserve/ImageUpload')
|
||||
const handleResult = () => import('@/views/ebiz/preserve/HandleResult')
|
||||
const submitResult = () => import('@/views/ebiz/preserve/SubmitResult')
|
||||
const policyList = () => import('@/views/ebiz/preserve/PolicyList')
|
||||
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 surrenderInfo = () => import('@/views/ebiz/preserve/SurrenderInfo')
|
||||
const surrenderConfirmation = () => import('@/views/ebiz/preserve/SurrenderConfirmation')
|
||||
const autopayAuthorization = () => import('@/views/ebiz/preserve/AutopayAuthorization')
|
||||
|
||||
export default [
|
||||
{
|
||||
path: '/preserve/search',
|
||||
name: 'search',
|
||||
component: search,
|
||||
meta: {
|
||||
title: '搜索客户',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/policyList',
|
||||
name: 'policyList',
|
||||
component: policyList,
|
||||
meta: {
|
||||
title: '选择保单',
|
||||
index: 2
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/contactInfo',
|
||||
name: 'contactInfo',
|
||||
component: contactInfo,
|
||||
meta: {
|
||||
title: '联系方式变更',
|
||||
index: 3
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/renewalInfo',
|
||||
name: 'renewalInfo',
|
||||
component: renewalInfo,
|
||||
meta: {
|
||||
title: '续期账号变更',
|
||||
index: 4
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/beneficiaryInfo',
|
||||
name: 'beneficiaryInfo',
|
||||
component: beneficiaryInfo,
|
||||
meta: {
|
||||
title: '受益人变更',
|
||||
index: 5
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/surrenderInfo',
|
||||
name: 'surrenderInfo',
|
||||
component: surrenderInfo,
|
||||
meta: {
|
||||
title: '退保',
|
||||
index: 6
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/imageUpload',
|
||||
name: 'imageUpload',
|
||||
component: imageUpload,
|
||||
meta: {
|
||||
title: '影像上传',
|
||||
index: 7
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/handleResult',
|
||||
name: 'handleResult',
|
||||
component: handleResult,
|
||||
meta: {
|
||||
title: '操作结果',
|
||||
index: 8
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/beneficiaryConfirmation',
|
||||
name: 'beneficiaryConfirmation',
|
||||
component: beneficiaryConfirmation,
|
||||
meta: {
|
||||
title: '保全代办确认',
|
||||
index: 9
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/renewalConfirmation',
|
||||
name: 'renewalConfirmation',
|
||||
component: renewalConfirmation,
|
||||
meta: {
|
||||
title: '保全代办确认',
|
||||
index: 10
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/contactConfirmation',
|
||||
name: 'contactConfirmation',
|
||||
component: contactConfirmation,
|
||||
meta: {
|
||||
title: '保全代办确认',
|
||||
index: 11
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/surrenderConfirmation',
|
||||
name: 'surrenderConfirmation',
|
||||
component: surrenderConfirmation,
|
||||
meta: {
|
||||
title: '保全代办确认',
|
||||
index: 12
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/autopayAuthorization',
|
||||
name: 'autopayAuthorization',
|
||||
component: autopayAuthorization,
|
||||
meta: {
|
||||
title: '签署自动转账授权书',
|
||||
index: 12
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/submitResult',
|
||||
name: 'submitResult',
|
||||
component: submitResult,
|
||||
meta: {
|
||||
title: '提交结果',
|
||||
index: 13
|
||||
}
|
||||
}
|
||||
]
|
||||
@@ -30,6 +30,10 @@
|
||||
<li><router-link to="/survey/surveyList">问卷调查</router-link></li>
|
||||
<li><router-link to="/nbs/list">nbs列表</router-link></li>
|
||||
<li><router-link to="/manpower/DiscAnalysis/List">DISC性格分析</router-link></li>
|
||||
<li><router-link to="/preserve/search?entry=contact">保全-搜索-联系方式变更</router-link></li>
|
||||
<li><router-link to="/preserve/search?entry=beneficiary">保全-搜索-受益人变更</router-link></li>
|
||||
<li><router-link to="/preserve/search?entry=renewal">保全-搜索-续期账户变更</router-link></li>
|
||||
<li><router-link to="/preserve/search?entry=surrender">保全-搜索-退保</router-link></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
4
src/views/ebiz/preserve/AutopayAuthorization.vue
Normal file
4
src/views/ebiz/preserve/AutopayAuthorization.vue
Normal file
@@ -0,0 +1,4 @@
|
||||
<!--自动转账授权书-续期账号变更-->
|
||||
<template>
|
||||
<div class="auto-pay"></div>
|
||||
</template>
|
||||
1
src/views/ebiz/preserve/BeneficiaryConfirmation.vue
Normal file
1
src/views/ebiz/preserve/BeneficiaryConfirmation.vue
Normal file
@@ -0,0 +1 @@
|
||||
<!--受益人变更-保全代办确认页-->
|
||||
1
src/views/ebiz/preserve/BeneficiaryInfo.vue
Normal file
1
src/views/ebiz/preserve/BeneficiaryInfo.vue
Normal file
@@ -0,0 +1 @@
|
||||
<!--受益人变更页面-->
|
||||
1
src/views/ebiz/preserve/ContactConfirmation.vue
Normal file
1
src/views/ebiz/preserve/ContactConfirmation.vue
Normal file
@@ -0,0 +1 @@
|
||||
<!--联系方式变更-保全代办确认页-->
|
||||
1
src/views/ebiz/preserve/ContactInfo.vue
Normal file
1
src/views/ebiz/preserve/ContactInfo.vue
Normal file
@@ -0,0 +1 @@
|
||||
<!--联系方式变更页-->
|
||||
1
src/views/ebiz/preserve/HandleResult.vue
Normal file
1
src/views/ebiz/preserve/HandleResult.vue
Normal file
@@ -0,0 +1 @@
|
||||
<!--操作结果页面-->
|
||||
1
src/views/ebiz/preserve/ImageUpload.vue
Normal file
1
src/views/ebiz/preserve/ImageUpload.vue
Normal file
@@ -0,0 +1 @@
|
||||
<!--影像信息上传页面-->
|
||||
1
src/views/ebiz/preserve/PolicyList.vue
Normal file
1
src/views/ebiz/preserve/PolicyList.vue
Normal file
@@ -0,0 +1 @@
|
||||
<!--保单列表页-->
|
||||
1
src/views/ebiz/preserve/RenewalConfirmation.vue
Normal file
1
src/views/ebiz/preserve/RenewalConfirmation.vue
Normal file
@@ -0,0 +1 @@
|
||||
<!--续期账号变更-保全代办确认页-->
|
||||
1
src/views/ebiz/preserve/RenewalInfo.vue
Normal file
1
src/views/ebiz/preserve/RenewalInfo.vue
Normal file
@@ -0,0 +1 @@
|
||||
<!--续期账号变更页面-->
|
||||
3
src/views/ebiz/preserve/Search.vue
Normal file
3
src/views/ebiz/preserve/Search.vue
Normal file
@@ -0,0 +1,3 @@
|
||||
<template>
|
||||
<h1>11111</h1>
|
||||
</template>
|
||||
1
src/views/ebiz/preserve/SubmitResult.vue
Normal file
1
src/views/ebiz/preserve/SubmitResult.vue
Normal file
@@ -0,0 +1 @@
|
||||
<!--提交结果页面-->
|
||||
1
src/views/ebiz/preserve/SurrenderConfirmation.vue
Normal file
1
src/views/ebiz/preserve/SurrenderConfirmation.vue
Normal file
@@ -0,0 +1 @@
|
||||
<!--退保-保全代办确认页-->
|
||||
1
src/views/ebiz/preserve/SurrenderInfo.vue
Normal file
1
src/views/ebiz/preserve/SurrenderInfo.vue
Normal file
@@ -0,0 +1 @@
|
||||
<!--退保页-->
|
||||
Reference in New Issue
Block a user