|
@@ -56,7 +56,7 @@
|
|
<div v-else-if="bcjlLiIds.includes(Number(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" :data="caseRecodeInfo" name="" v-else />
|
|
</div>
|
|
</div>
|
|
<div v-else-if="shoushuLiIds.includes(Number(is_active))">
|
|
<div v-else-if="shoushuLiIds.includes(Number(is_active))">
|
|
<!-- 手术记录 -->
|
|
<!-- 手术记录 -->
|
|
@@ -65,7 +65,7 @@
|
|
<ShouShuRecord2 v-if="surgeryData.type === 2" :data="surgeryData" />
|
|
<ShouShuRecord2 v-if="surgeryData.type === 2" :data="surgeryData" />
|
|
<ShouShuRecord4 v-if="surgeryData.type === 4" :data="surgeryData" />
|
|
<ShouShuRecord4 v-if="surgeryData.type === 4" :data="surgeryData" />
|
|
</template>
|
|
</template>
|
|
- <NoFormatText v-else :text="surgeryData.content" :name="blname_title" />
|
|
|
|
|
|
+ <NoFormatText v-else :text="surgeryData.content" :data="surgeryData" :name="blname_title" />
|
|
</div>
|
|
</div>
|
|
<div v-else-if="is_active == '长期医嘱'">
|
|
<div v-else-if="is_active == '长期医嘱'">
|
|
<!-- 长期医嘱 -->
|
|
<!-- 长期医嘱 -->
|
|
@@ -110,7 +110,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
- <script>
|
|
|
|
|
|
+<script>
|
|
import Mmenu from '@/components/m-menu';
|
|
import Mmenu from '@/components/m-menu';
|
|
import mainHomePage from '@/views/allcase/contFile/mainHomePage';
|
|
import mainHomePage from '@/views/allcase/contFile/mainHomePage';
|
|
import newContFile from '@/views/allcase/contFile/newContFile';
|
|
import newContFile from '@/views/allcase/contFile/newContFile';
|
|
@@ -130,7 +130,7 @@ import ShouShuRecord2 from './components/ShouShuRecord2.vue';
|
|
import ShouShuRecord4 from './components/ShouShuRecord4.vue';
|
|
import ShouShuRecord4 from './components/ShouShuRecord4.vue';
|
|
import NoFormatText from './components/NoFormatText.vue';
|
|
import NoFormatText from './components/NoFormatText.vue';
|
|
import OutHospitalRecord from './components/OutHospitalRecord.vue';
|
|
import OutHospitalRecord from './components/OutHospitalRecord.vue';
|
|
-import CaseQualityBox from './components/CaseQualityBox.vue'
|
|
|
|
|
|
+import CaseQualityBox from './components/CaseQualityBox.vue';
|
|
|
|
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
@@ -153,7 +153,7 @@ export default {
|
|
ShouShuRecord4,
|
|
ShouShuRecord4,
|
|
NoFormatText,
|
|
NoFormatText,
|
|
OutHospitalRecord,
|
|
OutHospitalRecord,
|
|
- CaseQualityBox
|
|
|
|
|
|
+ CaseQualityBox,
|
|
},
|
|
},
|
|
directives: {},
|
|
directives: {},
|
|
filters: {},
|
|
filters: {},
|
|
@@ -180,7 +180,7 @@ export default {
|
|
pacsDetail: {},
|
|
pacsDetail: {},
|
|
// 病程记录详情
|
|
// 病程记录详情
|
|
caseRecodeInfo: {
|
|
caseRecodeInfo: {
|
|
- is_format: 1
|
|
|
|
|
|
+ is_format: 1,
|
|
},
|
|
},
|
|
surgeryData: {
|
|
surgeryData: {
|
|
mzfj: [],
|
|
mzfj: [],
|
|
@@ -252,7 +252,7 @@ export default {
|
|
this.valData = this.storageGet('getData');
|
|
this.valData = this.storageGet('getData');
|
|
if (this.valData) {
|
|
if (this.valData) {
|
|
this.funQuery();
|
|
this.funQuery();
|
|
- this.getCaseQualityResults()
|
|
|
|
|
|
+ this.getCaseQualityResults();
|
|
}
|
|
}
|
|
this.getTree();
|
|
this.getTree();
|
|
},
|
|
},
|
|
@@ -264,7 +264,7 @@ export default {
|
|
id: Number(this.valData),
|
|
id: Number(this.valData),
|
|
};
|
|
};
|
|
this.$axios.post('/get_case_quality', params).then(res => {
|
|
this.$axios.post('/get_case_quality', params).then(res => {
|
|
- this.results = res.data
|
|
|
|
|
|
+ this.results = res.data;
|
|
});
|
|
});
|
|
},
|
|
},
|
|
reload() {
|
|
reload() {
|