mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-11 13:16:43 +08:00
修改投保人风险评估未消失
This commit is contained in:
@@ -85,8 +85,8 @@ export default {
|
|||||||
getOrderDetail({ orderNo: localStorage.orderNo }).then(res => {
|
getOrderDetail({ orderNo: localStorage.orderNo }).then(res => {
|
||||||
if (res.result == 0) {
|
if (res.result == 0) {
|
||||||
// this.isShowEvaluationPoint = res.orderDTO.riskEvaluationDTO.isShowEvaluationPoint
|
// this.isShowEvaluationPoint = res.orderDTO.riskEvaluationDTO.isShowEvaluationPoint
|
||||||
// let updateAnswerType = res.orderDTO.riskEvaluationDTO.isShowEvaluationPoint =='1'?true:false
|
let updateAnswerType = res.orderDTO.riskEvaluationDTO.isShowEvaluationPoint =='1'?true:false
|
||||||
// this.$store.commit('updateAnswerType', updateAnswerType )
|
this.$store.commit('updateAnswerType', updateAnswerType )
|
||||||
this.$utils.intLocalStorage(res)
|
this.$utils.intLocalStorage(res)
|
||||||
this.type = res.orderDTO.orderInfoDTO.bnfFlag == '1' ? '2' : '1' //bnfFlag 0-法定受益人 1-指定受益人
|
this.type = res.orderDTO.orderInfoDTO.bnfFlag == '1' ? '2' : '1' //bnfFlag 0-法定受益人 1-指定受益人
|
||||||
if (res.orderDTO.orderInfoDTO.bnfFlag == null) {
|
if (res.orderDTO.orderInfoDTO.bnfFlag == null) {
|
||||||
|
|||||||
@@ -556,6 +556,9 @@ export default {
|
|||||||
const orderNo = this.$CacheUtils.getLocItem('orderNo')
|
const orderNo = this.$CacheUtils.getLocItem('orderNo')
|
||||||
getOrderDetail({ orderNo: orderNo }).then((res) => {
|
getOrderDetail({ orderNo: orderNo }).then((res) => {
|
||||||
if (res.result == 0) {
|
if (res.result == 0) {
|
||||||
|
let updateAnswerType = res.orderDTO.riskEvaluationDTO.isShowEvaluationPoint =='1'?true:false
|
||||||
|
console.log(updateAnswerType,'updateAnswerType');
|
||||||
|
this.$store.commit( 'updateAnswerType',updateAnswerType )
|
||||||
//投保人信息返显
|
//投保人信息返显
|
||||||
this.userInfo = res.orderDTO.appntDTO
|
this.userInfo = res.orderDTO.appntDTO
|
||||||
this.setCustomerMarriage(res.orderDTO.appntDTO.marriage)
|
this.setCustomerMarriage(res.orderDTO.appntDTO.marriage)
|
||||||
|
|||||||
@@ -610,6 +610,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
this.$store.commit('updateAnswerType', false )
|
||||||
this.specilFlag = this.$route.query.specilFlag
|
this.specilFlag = this.$route.query.specilFlag
|
||||||
//如果是编辑/导航进来
|
//如果是编辑/导航进来
|
||||||
// if (this.$route.query.edit) {
|
// if (this.$route.query.edit) {
|
||||||
|
|||||||
@@ -195,9 +195,10 @@ export default {
|
|||||||
// getOrderDetail({ orderNo: `8186270000000036` }).then(res => {
|
// getOrderDetail({ orderNo: `8186270000000036` }).then(res => {
|
||||||
if (res.result == 0) {
|
if (res.result == 0) {
|
||||||
//投被保险人关系
|
//投被保险人关系
|
||||||
this.isShowEvaluationPoint = res.orderDTO.riskEvaluationDTO.isShowEvaluationPoint
|
// this.isShowEvaluationPoint = res.orderDTO.riskEvaluationDTO.isShowEvaluationPoint
|
||||||
let updateAnswerType = res.orderDTO.riskEvaluationDTO.isShowEvaluationPoint =='1'?true:false
|
let updateAnswerType = res.orderDTO.riskEvaluationDTO.isShowEvaluationPoint =='1'?true:false
|
||||||
this.$store.commit('updateAnswerType', updateAnswerType )
|
console.log(updateAnswerType,'updateAnswerType');
|
||||||
|
this.$store.commit( 'updateAnswerType',updateAnswerType )
|
||||||
this.isExistAdditionalRisk = res.orderDTO.insuredDTOs[0].riskDTOLst.length > 1 ? true : false
|
this.isExistAdditionalRisk = res.orderDTO.insuredDTOs[0].riskDTOLst.length > 1 ? true : false
|
||||||
console.log('this.is ====', this.isExistAdditionalRisk)
|
console.log('this.is ====', this.isExistAdditionalRisk)
|
||||||
this.relationToAppnt = res.orderDTO.insuredDTOs[0].relationToAppnt
|
this.relationToAppnt = res.orderDTO.insuredDTOs[0].relationToAppnt
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
<div style="padding-bottom:10vh">
|
<div style="padding-bottom:10vh">
|
||||||
<h5 class="pt20 m10">投保人声明</h5>
|
<h5 class="pt20 m10">投保人声明</h5>
|
||||||
<van-checkbox-group v-model="result" v-for="(item, index) in statementlist" :key="index" @change="statementChange">
|
<van-checkbox-group v-model="result" v-for="(item, index) in statementlist" :key="index" @change="statementChange">
|
||||||
<van-checkbox :name="index" class="mt20" label-disabled >{{index+1}}. <span v-html="item"></span></van-checkbox>
|
<van-checkbox :name="index" class="mt20" label-disabled ><span v-html="item"></span></van-checkbox>
|
||||||
<!-- <van-checkbox :name="index" class="mt20" label-disabled ></van-checkbox>
|
<!-- <van-checkbox :name="index" class="mt20" label-disabled ></van-checkbox>
|
||||||
<span v-html="item"></span> -->
|
<span v-html="item"></span> -->
|
||||||
</van-checkbox-group>
|
</van-checkbox-group>
|
||||||
|
|||||||
Reference in New Issue
Block a user