|
|
@@ -47,8 +47,15 @@ export default {
|
|
47
|
47
|
watch: {
|
|
48
|
48
|
mediatorVisable(val) {
|
|
49
|
49
|
if (val) {
|
|
50
|
|
- listMediator().then(res=>{
|
|
|
50
|
+ listMediator({caseAppliId: this.mediatorData.id}).then(res=>{
|
|
51
|
51
|
this.tableData = res.data;
|
|
|
52
|
+ this.tableData.forEach((item)=> {
|
|
|
53
|
+ if (item.echoFlag) {
|
|
|
54
|
+ this.$nextTick(()=>{
|
|
|
55
|
+ this.$refs.multipleTable.toggleRowSelection(item, true);
|
|
|
56
|
+ })
|
|
|
57
|
+ }
|
|
|
58
|
+ })
|
|
52
|
59
|
})
|
|
53
|
60
|
}
|
|
54
|
61
|
}
|
|
|
@@ -88,7 +95,6 @@ export default {
|
|
88
|
95
|
},
|
|
89
|
96
|
handleSelectionChange(val) {
|
|
90
|
97
|
this.multipleSelection = val;
|
|
91
|
|
- // console.log(this.multipleSelection,"LLLLLLLLLLLLLLLLL");
|
|
92
|
98
|
}
|
|
93
|
99
|
},
|
|
94
|
100
|
};
|