|
@@ -11,6 +11,7 @@ $(function(){
|
|
|
//本页全局变量
|
|
|
let global_flawData = {}; //缺陷数据
|
|
|
let global_flawDataPay = {}; //缺陷数据
|
|
|
+ let global_title = {}; //缺陷数据
|
|
|
const global_id=getUrlArgObject("id");
|
|
|
const global_age = getUrlArgObject("age");
|
|
|
let global_check;
|
|
@@ -64,6 +65,13 @@ function initMenu(data){
|
|
|
$(".page").on("click",function(){
|
|
|
$(".info-item .cont,.flaw-item,td").removeClass("active"); //清空缺陷定位背景
|
|
|
const title = $(this).attr("code");
|
|
|
+ if(title == '缺陷总览'){
|
|
|
+ $(".check").css('display','none')
|
|
|
+ }else if(title == '病案首页'){
|
|
|
+ $(".check").css('display','block').text('病案首页核查')
|
|
|
+ }else{
|
|
|
+ $(".check").css('display','block')
|
|
|
+ }
|
|
|
if(title==="缺陷总览"||title==="谈话告知书"||title==="知情同意书"){
|
|
|
if(title==="缺陷总览"){
|
|
|
getRecordDetailUpdate()
|