|
@@ -119,7 +119,7 @@
|
|
<!-- status 不存在 意味着不脱敏、医院自助查询 -->
|
|
<!-- status 不存在 意味着不脱敏、医院自助查询 -->
|
|
<template v-if="!$route.query.status && isControl">
|
|
<template v-if="!$route.query.status && isControl">
|
|
<!-- 病案首页质控 -->
|
|
<!-- 病案首页质控 -->
|
|
- <CaseQualityBox :data="results" :type="type_v" :width="340" :height="820" @hightRight="hightRight"/>
|
|
+ <CaseQualityBox v-if="results" :data="results" :type="type_v" :width="340" :height="820" @hightRight="hightRight"/>
|
|
</template>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -217,9 +217,7 @@ export default {
|
|
cyyz: {},
|
|
cyyz: {},
|
|
},
|
|
},
|
|
dataObj: [],
|
|
dataObj: [],
|
|
- results: {
|
|
+ results: null,
|
|
- data: {},
|
|
|
|
- },
|
|
|
|
is_tm_path: ['/hospital-caseViews', '/embedIndex-caseViews', '/reviewIndex-caseViews', '/whitelist-caseViews', '/whitelist-search'],
|
|
is_tm_path: ['/hospital-caseViews', '/embedIndex-caseViews', '/reviewIndex-caseViews', '/whitelist-caseViews', '/whitelist-search'],
|
|
isControl: false,
|
|
isControl: false,
|
|
};
|
|
};
|
|
@@ -306,11 +304,17 @@ export default {
|
|
if (this.type_v == 'v2') {
|
|
if (this.type_v == 'v2') {
|
|
// (事中)
|
|
// (事中)
|
|
this.$axios2.post('/get_case_quality_v2', params).then(res => {
|
|
this.$axios2.post('/get_case_quality_v2', params).then(res => {
|
|
- this.results = res.data;
|
|
+ this.results = null;
|
|
|
|
+ this.$nextTick(() =>{
|
|
|
|
+ this.results = res.data;
|
|
|
|
+ })
|
|
});
|
|
});
|
|
} else {
|
|
} else {
|
|
this.$axios2.post('/get_case_quality', params).then(res => {
|
|
this.$axios2.post('/get_case_quality', params).then(res => {
|
|
- this.results = res.data;
|
|
+ this.results = null;
|
|
|
|
+ this.$nextTick(() =>{
|
|
|
|
+ this.results = res.data;
|
|
|
|
+ })
|
|
});
|
|
});
|
|
}
|
|
}
|
|
},
|
|
},
|