Browse Source

完善 首次质控缺陷和评分

yangdr 5 months ago
parent
commit
be10613ea8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/js/qcScore.js

+ 2 - 2
src/js/qcScore.js

@@ -1175,9 +1175,9 @@ $(function () {
     $(".patient-info .first .detail").slideToggle()
     $(".patient-info .first .detail").empty()
     let data = qcFirstAnalyzeData
-    let str = `<p> 病历等级:${data.level} &nbsp;病历得分:${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)