|
@@ -123,7 +123,12 @@ function getRecordDetail(){
|
|
|
|
|
|
//填充患者信息
|
|
|
function initPatientInfo(data){
|
|
|
- const obj=Object.assign({},data,{age:!global_age||global_age=="null"?"-":global_age,checkState:global_check});
|
|
|
+ let hasCheck = false
|
|
|
+ if(hasData("FUNC000014")){
|
|
|
+ hasCheck = true
|
|
|
+ }
|
|
|
+ const obj=Object.assign({},data,{age:!global_age||global_age=="null"?"-":global_age,hasCheck,checkState:global_check});
|
|
|
+
|
|
|
$("#infoTmpl").tmpl(obj).appendTo("#patientInfo");
|
|
|
$(".check").on("click", function(){
|
|
|
checkQc()
|