|
@@ -53,12 +53,12 @@
|
|
<!-- 出院记录 -->
|
|
<!-- 出院记录 -->
|
|
<OutHospitalRecord :data="outHospitalRecordData" />
|
|
<OutHospitalRecord :data="outHospitalRecordData" />
|
|
</div>
|
|
</div>
|
|
- <div v-else-if="bcjlLiIds.includes(is_active)">
|
|
|
|
|
|
+ <div v-else-if="bcjlLiIds.includes(Number(is_active))">
|
|
<!-- 病程记录 -->
|
|
<!-- 病程记录 -->
|
|
<CaseRecord :data="caseRecodeInfo" v-if="caseRecodeInfo.is_format === 1" />
|
|
<CaseRecord :data="caseRecodeInfo" v-if="caseRecodeInfo.is_format === 1" />
|
|
<NoFormatText :text="caseRecodeInfo.content" name="" v-else />
|
|
<NoFormatText :text="caseRecodeInfo.content" name="" v-else />
|
|
</div>
|
|
</div>
|
|
- <div v-else-if="shoushuLiIds.includes(is_active)">
|
|
|
|
|
|
+ <div v-else-if="shoushuLiIds.includes(Number(is_active))">
|
|
<!-- 手术记录 -->
|
|
<!-- 手术记录 -->
|
|
<template v-if="surgeryData.is_format">
|
|
<template v-if="surgeryData.is_format">
|
|
<ShouShuRecord1 v-if="surgeryData.type === 1" :data="surgeryData" />
|
|
<ShouShuRecord1 v-if="surgeryData.type === 1" :data="surgeryData" />
|
|
@@ -176,7 +176,9 @@ export default {
|
|
titleName: '住院病案',
|
|
titleName: '住院病案',
|
|
pacsDetail: {},
|
|
pacsDetail: {},
|
|
// 病程记录详情
|
|
// 病程记录详情
|
|
- caseRecodeInfo: {},
|
|
|
|
|
|
+ caseRecodeInfo: {
|
|
|
|
+ is_format: 1
|
|
|
|
+ },
|
|
surgeryData: {
|
|
surgeryData: {
|
|
mzfj: [],
|
|
mzfj: [],
|
|
ssqk: [],
|
|
ssqk: [],
|
|
@@ -212,6 +214,7 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ console.log(liIds)
|
|
return liIds;
|
|
return liIds;
|
|
},
|
|
},
|
|
shoushuLiIds() {
|
|
shoushuLiIds() {
|
|
@@ -298,6 +301,7 @@ export default {
|
|
});
|
|
});
|
|
},
|
|
},
|
|
clickTree(b, n, item) {
|
|
clickTree(b, n, item) {
|
|
|
|
+ console.log(b, n, item)
|
|
this.titleName = n;
|
|
this.titleName = n;
|
|
this.parentType = b;
|
|
this.parentType = b;
|
|
let that = this;
|
|
let that = this;
|
|
@@ -313,7 +317,7 @@ export default {
|
|
} else {
|
|
} else {
|
|
that.is_active = b;
|
|
that.is_active = b;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ console.log(that.is_active)
|
|
that.name_title = n;
|
|
that.name_title = n;
|
|
this.errorList = [];
|
|
this.errorList = [];
|
|
if (b != 0 && b != 292 && b != 1) {
|
|
if (b != 0 && b != 292 && b != 1) {
|