|
@@ -1166,12 +1166,12 @@ $(function () {
|
|
|
$(document).on("click", "body", function () {
|
|
|
$(".patient-info .first .detail").slideUp()
|
|
|
})
|
|
|
+ $(document).on("click", ".patient-info .first .detail", function (event) {
|
|
|
+ event.stopPropagation()
|
|
|
+ })
|
|
|
$(document).on("click", ".patient-info .first .text", function (event) {
|
|
|
// console.log("event", event)
|
|
|
event.stopPropagation()
|
|
|
- $(".patient-info .first .detail").on("click", function (event) {
|
|
|
- event.stopPropagation()
|
|
|
- })
|
|
|
$(".patient-info .first .detail").slideToggle()
|
|
|
$(".patient-info .first .detail").empty()
|
|
|
let data = qcFirstAnalyzeData
|