|
@@ -1,6 +1,6 @@
|
|
<template>
|
|
<template>
|
|
<div ref="box" class="box">
|
|
<div ref="box" class="box">
|
|
- <CaseQualityBox v-if="data" :data="data" :width="400"/>
|
|
|
|
|
|
+ <CaseQualityBox :width="400"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -16,21 +16,21 @@ import CaseQualityBox from '@/views/recordsRoom/qc/components/CaseQualityBox2.vu
|
|
}
|
|
}
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
- this.getCaseQualityResults()
|
|
|
|
|
|
+ // this.getCaseQualityResults()
|
|
// if(this.$route.query.id) {
|
|
// if(this.$route.query.id) {
|
|
// this.getCaseQualityResults()
|
|
// this.getCaseQualityResults()
|
|
// }
|
|
// }
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
// 获取新病案指控结果
|
|
// 获取新病案指控结果
|
|
- getCaseQualityResults() {
|
|
|
|
- const params = {
|
|
|
|
- id: Number(this.$route.query.id),
|
|
|
|
- };
|
|
|
|
- this.$axios.post('/home_quality/getQualityResult', params).then(res => {
|
|
|
|
- this.data = res.data;
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
|
|
+ // getCaseQualityResults() {
|
|
|
|
+ // const params = {
|
|
|
|
+ // id: Number(this.$route.query.id),
|
|
|
|
+ // };
|
|
|
|
+ // this.$axios.post('/home_quality/getQualityResult', params).then(res => {
|
|
|
|
+ // this.data = res.data;
|
|
|
|
+ // });
|
|
|
|
+ // }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|