diff --git a/src/views/ebiz/agentEenter/approve/RecordDetail.vue b/src/views/ebiz/agentEenter/approve/RecordDetail.vue
index e25d69d76..40196f8d0 100644
--- a/src/views/ebiz/agentEenter/approve/RecordDetail.vue
+++ b/src/views/ebiz/agentEenter/approve/RecordDetail.vue
@@ -65,7 +65,8 @@
家属信息
-
+
+
@@ -73,6 +74,7 @@
+
审批信息
diff --git a/src/views/ebiz/claims/ClaimApprovalList.vue b/src/views/ebiz/claims/ClaimApprovalList.vue
index b1608dd0a..b98d71ea5 100644
--- a/src/views/ebiz/claims/ClaimApprovalList.vue
+++ b/src/views/ebiz/claims/ClaimApprovalList.vue
@@ -170,7 +170,7 @@ export default {
}else{
that.activeNames = []
this.claimApprovalList.forEach(function(item) {
- that.activeNames = that.claimApprovalIds.concat(item.checkboxResult)
+ that.activeNames = that.activeNames.concat(item.checkboxResult)
})
}
},
@@ -337,15 +337,15 @@ export default {
this.claimApprovalList = res.content
this.claimApprovalList.forEach(function(item) {
//list中插入checkbox选中的数组
- // item.checkboxResult = []
- // let arr = []
+ item.checkboxResult = []
+ let arr = []
item.claimApprovalSearchLst.forEach(function(item01) {
that.total++ //统计list中有多少条子数据
- // arr.push(item01.id)
+ arr.push(item01.id)
that.claimApprovalIds.push(item01.id)
item01.isChecked = '0'
})
- // item.checkboxResult = arr
+ item.checkboxResult = arr
})
this.passNum = this.claimApprovalIds.length
this.refuseNum = 0