|
@@ -1175,9 +1175,9 @@ $(function () {
|
|
|
$(".patient-info .first .detail").slideToggle()
|
|
|
$(".patient-info .first .detail").empty()
|
|
|
let data = qcFirstAnalyzeData
|
|
|
- let str = `<p> 病历等级:${data.level} 病历得分:${data.scoreRes}</p>`
|
|
|
+ let str = `<p> 病历等级:${data.level} </p><p>病历得分:${data.scoreRes}</p><p>缺陷条目:</p>`
|
|
|
data.msg.forEach((el, index) => {
|
|
|
- str += `<p>${index}:${el}</p>`
|
|
|
+ str += `<p>${index + 1}.${el}</p>`
|
|
|
})
|
|
|
$(".patient-info .first .detail").html(str)
|
|
|
|