|
@@ -554,6 +554,7 @@ export default {
|
|
|
getData() {
|
|
|
const params = {
|
|
|
ZYH: this.MEDRECID,
|
|
|
+ show_correction: this.$route.path == '/whitelist-bmyQualityResult' ? 2 : 1
|
|
|
};
|
|
|
this.$axios.post('/home_bmy_quality/bmyQualityResult', params).then(res => {
|
|
|
console.log('编码员数据', res.data);
|
|
@@ -618,7 +619,8 @@ export default {
|
|
|
// 获取病案首页
|
|
|
getQualityResult() {
|
|
|
this.$axios.post('/home_quality/getQualityResult', {
|
|
|
- id: this.MEDRECID
|
|
|
+ id: this.MEDRECID,
|
|
|
+ show_correction: this.$route.path == '/whitelist-qualityResults' ? 2 : 1
|
|
|
}).then(res => {
|
|
|
this.resultsList = res.data; // 清空结果
|
|
|
if(this.resultsList && this.resultsList.list && Array.isArray(this.resultsList.list)) {
|
|
@@ -634,6 +636,7 @@ export default {
|
|
|
qualityBazb() {
|
|
|
const params = {
|
|
|
id: this.MEDRECID,
|
|
|
+ show_correction: 1
|
|
|
};
|
|
|
getCaseQualityBazb(params).then(res => {
|
|
|
if (res && res.data) {
|