diff --git a/src/api/ebiz/insureAgain/insureAgain.js b/src/api/ebiz/insureAgain/insureAgain.js
new file mode 100644
index 000000000..d321278ac
--- /dev/null
+++ b/src/api/ebiz/insureAgain/insureAgain.js
@@ -0,0 +1,19 @@
+/*
+ * @Author: PangXingYue
+ * @Date: 2021-03-04 10:38:24
+ * @LastEditTime: 2021-03-04 10:50:17
+ * @LastEditors: PangXingYue
+ * @Description:
+ * @FilePath: \ebiz-h5\src\api\ebiz\insureAgain\insureAgain.js
+ */
+import request from '@/assets/js/utils/request'
+import getUrl from '@/assets/js/utils/get-url'
+// 订单列表
+export function orderList(data) {
+ return request({
+ url: getUrl('/sale/order/orderList', 1),
+ method: 'post',
+ data
+ })
+}
+
diff --git a/src/views/ebiz/insureAgain/Order.vue b/src/components/ebiz/insureAgain/Order.vue
similarity index 55%
rename from src/views/ebiz/insureAgain/Order.vue
rename to src/components/ebiz/insureAgain/Order.vue
index fc33c9734..dbb1caf90 100644
--- a/src/views/ebiz/insureAgain/Order.vue
+++ b/src/components/ebiz/insureAgain/Order.vue
@@ -6,19 +6,29 @@
投保
- 李磊
+ {{ order.appntDTO.name }}
-
+
被保
- 李磊
-
-
- 主险
- 国富人寿国富民惠医疗保险(2020版)
-
+
{{ insured.name }}
+
+
+
+ 主险
+
+ {{ main.riskName }}
+
+
+
+ 附加
+
+ {{ addtional.riskName }}
+
+
+
首期总保费(元)
- 10,000
+ {{ order.firstPrem == 0 ? '0.00' : order.firstPrem | moneyFormat }}
@@ -36,6 +46,12 @@ export default {
components: {
[Tag.name]: Tag
},
+ props: {
+ order: {
+ type: Object,
+ default: () => {}
+ }
+ },
data() {
return {}
},
diff --git a/src/views/ebiz/insureAgain/ReadingAgreement.vue b/src/components/ebiz/insureAgain/ReadingAgreement.vue
similarity index 100%
rename from src/views/ebiz/insureAgain/ReadingAgreement.vue
rename to src/components/ebiz/insureAgain/ReadingAgreement.vue
diff --git a/src/router/ebiz/insureAgain.js b/src/router/ebiz/insureAgain.js
index 66154a250..726dd6ae3 100644
--- a/src/router/ebiz/insureAgain.js
+++ b/src/router/ebiz/insureAgain.js
@@ -3,7 +3,6 @@ const InsureAgainDetail = () => import('@/views/ebiz/insureAgain/InsureAgainDeta
const InsureAgainProgress = () => import('@/views/ebiz/insureAgain/InsureAgainProgress')
const InsureAgainPayment = () => import('@/views/ebiz/insureAgain/Payment')
const PaymentResult = () => import('@/views/ebiz/insureAgain/PaymentResult')
-const ReadingAgreement = () => import('@/views/ebiz/insureAgain/ReadingAgreement')
export default [
{
@@ -21,7 +20,7 @@ export default [
name: 'InsureAgainDetail',
component: InsureAgainDetail,
meta: {
- title: '可申请重新投保保单列表'
+ title: '可申请重新投保保单详情'
}
},
{
@@ -51,10 +50,4 @@ export default [
title: '支付结果'
}
},
- {
- // 协议阅读
- path: '/insureAgain/readingAgreement',
- name: 'ReadingAgreement',
- component: ReadingAgreement
- }
]
diff --git a/src/views/ebiz/insureAgain/Committed.vue b/src/views/ebiz/insureAgain/Committed.vue
deleted file mode 100644
index e05589a79..000000000
--- a/src/views/ebiz/insureAgain/Committed.vue
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
-
-
- 重新投保单号
- 8186270000011942
-
-
- 状态
- 重新投保失败
-
-
- 查看投保单
-
-
-
-
-
-
-
-
-
diff --git a/src/views/ebiz/insureAgain/InfoCell.vue b/src/views/ebiz/insureAgain/InfoCell.vue
index 06d9be5c9..7cb673b14 100644
--- a/src/views/ebiz/insureAgain/InfoCell.vue
+++ b/src/views/ebiz/insureAgain/InfoCell.vue
@@ -1,3 +1,11 @@
+
diff --git a/src/views/ebiz/insureAgain/InsureInformation.vue b/src/views/ebiz/insureAgain/InsureInformation.vue
index 1bb3b1c88..0e3bcec7a 100644
--- a/src/views/ebiz/insureAgain/InsureInformation.vue
+++ b/src/views/ebiz/insureAgain/InsureInformation.vue
@@ -13,7 +13,9 @@
女
-
+
+
+
@@ -37,7 +39,9 @@
女
-
+
+
+
有
@@ -59,13 +63,19 @@
男
女
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
+
@@ -105,4 +115,9 @@ export default {
}
-
+
diff --git a/src/views/ebiz/insureAgain/Payment.vue b/src/views/ebiz/insureAgain/Payment.vue
index f221b1381..995c76221 100644
--- a/src/views/ebiz/insureAgain/Payment.vue
+++ b/src/views/ebiz/insureAgain/Payment.vue
@@ -1,5 +1,6 @@
-
+
+
@@ -24,6 +25,13 @@
+
+
+ 返回可重新转保保单列表
+ 去支付
+
+
+
@@ -59,4 +81,18 @@ export default {
/deep/ .van-radio {
justify-content: flex-end;
}
+
+.action-bar {
+ position: fixed;
+ bottom: 0;
+ background: #fff;
+ width: 100vw;
+}
+
+.btns {
+ display: flex;
+ /deep/ .van-button--danger {
+ flex: 1;
+ }
+}
diff --git a/src/views/ebiz/insureAgain/ProductInformation.vue b/src/views/ebiz/insureAgain/ProductInformation.vue
index 4d0ec6b49..9d6cf6dda 100644
--- a/src/views/ebiz/insureAgain/ProductInformation.vue
+++ b/src/views/ebiz/insureAgain/ProductInformation.vue
@@ -86,7 +86,7 @@
import { bus } from './bus'
import InfoCell from './InfoCell'
import DropdownBox from './DropdownBox'
-import ReadingAgreement from './ReadingAgreement'
+import ReadingAgreement from '@/components/ebiz/insureAgain/ReadingAgreement'
import { Checkbox, RadioGroup, Radio, Dialog } from 'vant'
export default {
name: 'ProductInformation',
diff --git a/src/views/ebiz/insureAgain/Uncommitted.vue b/src/views/ebiz/insureAgain/Uncommitted.vue
deleted file mode 100644
index b58dc55ab..000000000
--- a/src/views/ebiz/insureAgain/Uncommitted.vue
+++ /dev/null
@@ -1,137 +0,0 @@
-
-
-
-
-
-
- 保单保障日截止日期
- 23453524234324
-
-
- 状态
- 重新投保失败
-
-
- 查看详情
- 重新投保
-
-
-
-
-
-
- 重新投保声明提示
- 尊敬的xxx先生/女士:
-
- 您好!您于保单生效日期投保的保单号为保单号码的国富人寿国富民惠医疗保险(2020版)保单即将到期(到期日期详见保单,以下简称旧保单),为保护您的权益,即日起至<期满日后第60天>期间,您可以选择重新投保国富人寿国富民惠医疗保险(2020版),本次申请投保的国富人寿国富民惠医疗保险(2020版)保单以下简称新保单,请您仔细阅读以下内容:
- 1.国富人寿国富民惠医疗保险(2020版)合同保险期间为一年,到期后需要重新投保。
- 2.本次重新投保,我们将按照国富人寿国富民惠医疗保险(2020版)费率表中的“在上一保险期间届满后60日内申请重新投保时对应的费率”计算保费。
- 3.若本次重新投保成功,新保单免除等待期。
- 4.本次重新投保仅限于无其他补充告知的情况,若您有其他补充告知,您的条件不符合本重新投保流程。请您联系保单服务专员,通过新增投保单进行投保申请。
- 5.若您于旧保单满期前申请重新投保,且于满期前成功支付保险费,则新保单在旧保单保险期满日对应日的次日零时生效,旧保单在保险期满日24时终止。若您于旧保单满期后60天(包含)内重新投保申请,且成功支付保险费,则新保单于支付次日零时生效,旧保单在保险期满日24时终止。
- 6.若您未在旧保单满期后60天(包含)内申请重新投保,则您的重新投保资格将被取消。后续您可再次申请投保,但新单不再与旧保单关联,需重新计算等待期。具体详情,可咨询保单服务专员。
-
-
-
-
- 本人已阅读、知晓本投保声明内容,同意重新投保
-
-
-
- 下一步
-
-
-
-
-
-
-
-
-
-
diff --git a/src/views/ebiz/insureAgain/index.vue b/src/views/ebiz/insureAgain/index.vue
index 49ed3ec11..df8789ccd 100644
--- a/src/views/ebiz/insureAgain/index.vue
+++ b/src/views/ebiz/insureAgain/index.vue
@@ -1,44 +1,102 @@
-
+
-
-
-
+
+
+
-
+
+
+
+
+
+ 保单保障日截止日期
+ {{ order.orderInfoDTO.orderNo }}
+
+
+
+ 重新投保单号
+ {{ order.orderInfoDTO.orderNo }}
+
+
+ 状态
+ {{ order.stateName }}
+
+
+
+ 查看详情
+ 重新投保
+
+
+
+
+
+
+
+ 重新投保声明提示
+ 尊敬的xxx先生/女士:
+
+ 您好!您于保单生效日期投保的保单号为保单号码的国富人寿国富民惠医疗保险(2020版)保单即将到期(到期日期详见保单,以下简称旧保单),为保护您的权益,即日起至<期满日后第60天>期间,您可以选择重新投保国富人寿国富民惠医疗保险(2020版),本次申请投保的国富人寿国富民惠医疗保险(2020版)保单以下简称新保单,请您仔细阅读以下内容:
+ 1.国富人寿国富民惠医疗保险(2020版)合同保险期间为一年,到期后需要重新投保。
+ 2.本次重新投保,我们将按照国富人寿国富民惠医疗保险(2020版)费率表中的“在上一保险期间届满后60日内申请重新投保时对应的费率”计算保费。
+ 3.若本次重新投保成功,新保单免除等待期。
+ 4.本次重新投保仅限于无其他补充告知的情况,若您有其他补充告知,您的条件不符合本重新投保流程。请您联系保单服务专员,通过新增投保单进行投保申请。
+ 5.若您于旧保单满期前申请重新投保,且于满期前成功支付保险费,则新保单在旧保单保险期满日对应日的次日零时生效,旧保单在保险期满日24时终止。若您于旧保单满期后60天(包含)内重新投保申请,且成功支付保险费,则新保单于支付次日零时生效,旧保单在保险期满日24时终止。
+ 6.若您未在旧保单满期后60天(包含)内申请重新投保,则您的重新投保资格将被取消。后续您可再次申请投保,但新单不再与旧保单关联,需重新计算等待期。具体详情,可咨询保单服务专员。
+
+
+
+
+ 本人已阅读、知晓本投保声明内容,同意重新投保
+
+
+
+ 下一步
+
+
+
+