From 7769dbfbc09729159fad878ff2d486c968146adb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=98=B1=E8=BE=BE?= Date: Fri, 25 Jul 2025 10:59:13 +0800 Subject: [PATCH] =?UTF-8?q?refactor(bpic=5Feli):=E7=A7=BB=E9=99=A4?= =?UTF-8?q?=E9=A3=8E=E9=99=A9=E5=8E=86=E5=8F=B2=E9=A1=B5=E9=9D=A2=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=20console.log=20=E8=AF=AD=E5=8F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 删除了多处不必要的 console.log 语句,包括: - jsonData - index - navList[index].checkSummary --- public/bpic_eli/risk_history.html | 9 --------- 1 file changed, 9 deletions(-) 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 )