|
@@ -46,8 +46,8 @@
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
</div>
|
|
</div>
|
|
<div class="list-basis-bottom-btn">
|
|
<div class="list-basis-bottom-btn">
|
|
- <el-button type="primary" @click="clickAppeal( item,1 )">通过</el-button>
|
|
|
|
- <el-button @click="clickAppeal( item,2 )">驳回</el-button>
|
|
|
|
|
|
+ <el-button type="primary" @click="clickAppeal( item,index,1 )">通过</el-button>
|
|
|
|
+ <el-button @click="clickAppeal( item,index,2 )">驳回</el-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -95,7 +95,9 @@
|
|
data(){
|
|
data(){
|
|
return {
|
|
return {
|
|
tableData: [],
|
|
tableData: [],
|
|
- is_show: true
|
|
|
|
|
|
+ is_show: true,
|
|
|
|
+ appeal_document: '',
|
|
|
|
+ appeal_docter: ''
|
|
}
|
|
}
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
@@ -148,6 +150,8 @@
|
|
data[i].show = true;
|
|
data[i].show = true;
|
|
}
|
|
}
|
|
this.tableData = data;
|
|
this.tableData = data;
|
|
|
|
+ this.appeal_document = this.data.appeal_document;
|
|
|
|
+ this.appeal_docter = this.data.appeal_docter;
|
|
},
|
|
},
|
|
onScroll(index) {
|
|
onScroll(index) {
|
|
const el = this.$el.querySelector(`.category${index}`);
|
|
const el = this.$el.querySelector(`.category${index}`);
|
|
@@ -176,8 +180,8 @@
|
|
let params = {
|
|
let params = {
|
|
id: item.id, // 质控错误结果的数据ID
|
|
id: item.id, // 质控错误结果的数据ID
|
|
status: type,
|
|
status: type,
|
|
- case_document: item.appeal_document, //申诉科室名称
|
|
|
|
- case_docter: item.appeal_docter, // 申诉医生名称
|
|
|
|
|
|
+ case_document: that.appeal_document, //申诉科室名称
|
|
|
|
+ case_docter: that.appeal_docter, // 申诉医生名称
|
|
index,
|
|
index,
|
|
}
|
|
}
|
|
that.$emit('clickAppealBtn',params);
|
|
that.$emit('clickAppealBtn',params);
|