diff --git a/public/bpic_eli/risk_history.html b/public/bpic_eli/risk_history.html index e0c94d8..311f510 100644 --- a/public/bpic_eli/risk_history.html +++ b/public/bpic_eli/risk_history.html @@ -451,8 +451,6 @@ var jsonData = JSON.parse(data) navList = jsonData.content.content.resultList navCheckRecord = jsonData.content.content.riskCheckRecord - console.log(jsonData) - var custom = document.getElementById('custom') var docs = document.getElementById('docs') custom.innerHTML = navCheckRecord.orgName || '未知客户' @@ -491,8 +489,6 @@ } // 防止冒泡(可选) if (window.event) window.event.cancelBubble = true - console.log(index) - // 移除所有已存在的active类 var links = document.querySelectorAll ? document.querySelectorAll('.link') @@ -524,7 +520,6 @@ } else { navList[index].checkSummary = '

暂无风险摘要信息

' // 防止报错 } - console.log(navList[index].checkSummary) docs.innerHTML = navList[index].checkSummary getDetail(navList[index]) @@ -643,9 +638,6 @@ treeItem.style.background = '#f0f4fa' treeItem.style.cursor = 'pointer' // treeItem.style.border = '1px solid #d6dde6' - - console.log(resultDetail, 'resultDetail') - treeItem.innerHTML = resultDetail.typeName ? resultDetail.typeName : resultDetail.dictLabel @@ -713,7 +705,6 @@ // 绑定点击事件展开/收起内容 treeItem.onclick = (function(index, item) { return function() { - console.log(index) var resultContainer = document.getElementById( 'result-container-' + index )