eecd8829 by joe

暂存

1 parent ccbfbd2a
......@@ -885,8 +885,9 @@ module.exports = {
tip4: "I / We hereby declare that the above statement and information, as far as I / we know and believe, are all facts and true.",
tip5: "The type of application you selected is not within the scope of insurance liability. Please verify and confirm. If you have any questions, ",
tip6: "please contact customer service.",
tip7: "Your claim application has been processed and we will process this application as soon as possible. We will notify you of the progress of the claim through a short message. Due to the need for review, we may notify you to supplement the relevant information or mail the physical object. If approved, the claims will be transferred to the insurance payment account by default. If changes are required, ",
tip8: "please upload the claimant's account information.",
tip7: "Your claim application has been processed and we will process this application as soon as possible. We will notify you of the progress of the claim through a short message. Due to the need for review, we may notify you to supplement the relevant information or mail the physical object. If approved, the claims will be transferred to the insurance payment account by default. If changes are required, please upload ",
tip8: "the claimant's account information.",
tip9: "The accident time you selected is not within the validity of the policy. Please verify and confirm. If you have any questions,",
toast1: "Medical treatment receipts",
toast2: "Discharge document / doctor's certificate with clear diagnosis",
toast3: "Such as blood test report, computer scan report, ultrasound report, etc.",
......
......@@ -880,8 +880,9 @@ module.exports = {
tip4: "本人/我們謹此聲明上述一切陳述及資料,就本人/我們所知所信,均為事實之全部並確實無訛。",
tip5: "您選擇的申請類型不在保險責任範圍內,請核實確認,如有疑問可",
tip6: "聯繫客服",
tip7: "您的理賠申請已經受理,我們會儘快處理本次申請。我們會短信通知理賠進度,因審核需要,可能會通知您補充相關資料或者郵寄實物。如審批通過,理賠款將默認轉入投保繳費帳戶,如需變更,",
tip8: "請上傳索償人帳戶資料。",
tip7: "您的理賠申請已經受理,我們會儘快處理本次申請。我們會短信通知理賠進度,因審核需要,可能會通知您補充相關資料或者郵寄實物。如審批通過,理賠款將默認轉入投保繳費帳戶,如需變更,請上傳",
tip8: "索償人帳戶資料。",
tip9: "您選擇的事故時間不在保單有效期範圍內,請核實確認,如有疑問可",
toast1: "醫療收據正本及帳單明細表",
toast2: "載有明確診斷之出院紙/醫生證明書等檔",
toast3: "如驗血報告、電腦掃描報告、超聲波報告等",
......
......@@ -882,8 +882,9 @@ module.exports = {
tip4: "本人/我们谨此声明上述一切陈述及数据,就本人/我们所知所信,均为事实之全部并确实无讹。",
tip5: "您选择的申请类型不在保险责任范围内,请核实确认,如有疑问可",
tip6: "联系客服",
tip7: "您的理赔申请已经受理,我们会尽快处理本次申请。我们会短信通知理赔进度,因审核需要,可能会通知您补充相关资料或者邮寄实物。如审批通过,理赔款将默认转入投保缴费账户,如需变更,",
tip8: "请上传索偿人账户资料。",
tip7: "您的理赔申请已经受理,我们会尽快处理本次申请。我们会短信通知理赔进度,因审核需要,可能会通知您补充相关资料或者邮寄实物。如审批通过,理赔款将默认转入投保缴费账户,如需变更,请上传",
tip8: "索偿人账户资料。",
tip9: "您选择的事故时间不在保单有效期范围内,请核实确认,如有疑问可",
toast1 : "医疗收据正本及账单明细表",
toast2 : "载有明确诊断之出院纸/医生证明书等文件",
toast3 : "如验血报告、计算机扫描报告、超声波报告等",
......
......@@ -27,7 +27,7 @@ export default {
// 是否显示组件
insuredList: {
type: Array,
default () {
default() {
return []
}
},
......@@ -78,6 +78,8 @@ export default {
contactDateError: false,
// 判断是否有合法的保单
policyIllegal: true,
// 1、选择类型;2、时间选择
modelType: "1"
}
},
components: {
......@@ -240,7 +242,7 @@ export default {
url: api.clarmsRegisterCase,
data: params
}).then(res => {
this.$emit("showModal", 2);
this.$emit("showModal", { action: 2, type: 1 });
this.loading = false;
this.agress = false;
}).catch(e => {
......@@ -259,7 +261,8 @@ export default {
}
let insured = this.insuredList[this.data.insuredIndex - 1];
if (!insured.policyInfoList || insured.policyInfoList.length <= 0) {
this.$emit("showModal", 1);
// action1为错误提示,type标记为类型,1是选择类型;2是时间范围
this.$emit("showModal", { action: 1, type: 1 });
return false;
}
// console.log("insured === ", insured);
......@@ -271,7 +274,8 @@ export default {
return policy;
}
}
this.$emit("showModal", 1);
// 2标记为时间
this.$emit("showModal", { action: 1, type: 2 });
return false;
}
},
......@@ -322,7 +326,7 @@ export default {
created() {
try {
this.$root.eventBus.$off("_evt_to_account_information");
} catch (e) {}
} catch (e) { }
this.$root.eventBus.$on("_evt_to_account_information", () => {
this.$nextTick(() => {
console.log("ccccc:", document.getElementById("sc"));
......
export default {
props: {
// 是否显示组件
// 1、顯示事故類型;2、顯示時間
type: {
type: String,
default: "2"
},
},
data() {
return {
......
......@@ -10,7 +10,12 @@
<img src="@/assets/images/clarms/info.png">
</div>
<div class="message">
<template v-if="type == 1">
{{$t('clarms.step2.tip5')}}
</template>
<template v-else>
{{$t('clarms.step2.tip9')}}
</template>
<span @click="toContact">{{$t('clarms.step2.tip6')}}</span>
</div>
</div>
......
......@@ -34,7 +34,8 @@ export default {
reservationTypes: [],
cid: "",
// 可以理赔的客户信息
customerList: []
customerList: [],
modelType: "1"
}
},
components: {
......@@ -78,7 +79,7 @@ export default {
data: param
}).then(res => {
if (res) {
if(res == -1){
if (res == -1) {
this.customerList = [];
this.step = 2;
} else {
......@@ -122,11 +123,12 @@ export default {
this.customerList = data.list;
this.step = 2;
},
handleShowModal(modalIndex) {
console.log(modalIndex);
if (modalIndex == 1) {
handleShowModal(model) {
console.log(model);
if (model.action == 1) {
this.modelType = model.type;
this.showModal1 = true;
} else if (modalIndex == 2) {
} else if (model.action == 2) {
this.showModal2 = true;
}
},
......@@ -165,5 +167,5 @@ export default {
this.initData();
},
created() {}
created() { }
}
......
......@@ -19,7 +19,7 @@
</div>
<div class="content clarms" v-else>
<div class="clarms-cont">
<clarms-modal-one v-if="showModal1" @close="showModal1 = false"></clarms-modal-one>
<clarms-modal-one v-if="showModal1" @close="showModal1 = false" :type="modelType"></clarms-modal-one>
<clarms-modal-two v-if="showModal2" @close="showModal2 = false"></clarms-modal-two>
<div class="mobile-margin">
......