Merge branch 'hhl' of SH-Arbitrate/Mediation-Frontend into dev
This commit was merged in pull request #73.
This commit is contained in:
@@ -47,8 +47,15 @@ export default {
|
|||||||
watch: {
|
watch: {
|
||||||
mediatorVisable(val) {
|
mediatorVisable(val) {
|
||||||
if (val) {
|
if (val) {
|
||||||
listMediator().then(res=>{
|
listMediator({caseAppliId: this.mediatorData.id}).then(res=>{
|
||||||
this.tableData = res.data;
|
this.tableData = res.data;
|
||||||
|
this.tableData.forEach((item)=> {
|
||||||
|
if (item.echoFlag) {
|
||||||
|
this.$nextTick(()=>{
|
||||||
|
this.$refs.multipleTable.toggleRowSelection(item, true);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -88,7 +95,6 @@ export default {
|
|||||||
},
|
},
|
||||||
handleSelectionChange(val) {
|
handleSelectionChange(val) {
|
||||||
this.multipleSelection = val;
|
this.multipleSelection = val;
|
||||||
// console.log(this.multipleSelection,"LLLLLLLLLLLLLLLLL");
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -35,6 +35,13 @@ export default {
|
|||||||
iconHead: process.env.VUE_APP_BASE_API
|
iconHead: process.env.VUE_APP_BASE_API
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
watch: {
|
||||||
|
$route(val) {
|
||||||
|
if (val) {
|
||||||
|
this.gettodoCount();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
created() {
|
created() {
|
||||||
this.gettodoCount();
|
this.gettodoCount();
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user