|
@@ -318,7 +318,7 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
-import { examineAppeal, examineReview, getCaseQualityBazb, getAppealData, getNumberInfo } from '@/api/qc';
|
|
|
|
|
|
+import { examineAppeal, examineReview, getCaseQualityBazb, getAppealData, getNumberInfo, getAppealNumberInfo } from '@/api/qc';
|
|
import AppealModal from '@/components/appealModal/index.vue'
|
|
import AppealModal from '@/components/appealModal/index.vue'
|
|
import { setCorrection } from '@/api/qc'
|
|
import { setCorrection } from '@/api/qc'
|
|
|
|
|
|
@@ -452,7 +452,11 @@ export default {
|
|
const { ZYH, id } = this.$route.query
|
|
const { ZYH, id } = this.$route.query
|
|
this.MEDRECID = this.$route.path == '/whitelist-qualityResults' ? id : ZYH;
|
|
this.MEDRECID = this.$route.path == '/whitelist-qualityResults' ? id : ZYH;
|
|
if(!(this.$route.path == '/whitelist-qualityResults' || this.$route.path == '/whitelist-bmyQualityResult')) {
|
|
if(!(this.$route.path == '/whitelist-qualityResults' || this.$route.path == '/whitelist-bmyQualityResult')) {
|
|
- this.getMessageNum();
|
|
|
|
|
|
+ if(this.$route.query.from == 'review') {
|
|
|
|
+ this.getAppealMessageNum()
|
|
|
|
+ } else {
|
|
|
|
+ this.getMessageNum();
|
|
|
|
+ }
|
|
}
|
|
}
|
|
this.getTabsData()
|
|
this.getTabsData()
|
|
},
|
|
},
|
|
@@ -476,6 +480,13 @@ export default {
|
|
this.tabList[2].medical = res.data.homeQuality;
|
|
this.tabList[2].medical = res.data.homeQuality;
|
|
});
|
|
});
|
|
},
|
|
},
|
|
|
|
+ getAppealMessageNum(){
|
|
|
|
+ getAppealNumberInfo({zyh: this.MEDRECID}).then(res => {
|
|
|
|
+ this.tabList[0].medical = res.data.error_v2;
|
|
|
|
+ this.tabList[1].medical = res.data.case_quality;
|
|
|
|
+ this.tabList[2].medical = res.data.home_quality;
|
|
|
|
+ });
|
|
|
|
+ },
|
|
hasMessage(tabName) {
|
|
hasMessage(tabName) {
|
|
return this.messageStatus[tabName];
|
|
return this.messageStatus[tabName];
|
|
},
|
|
},
|