修改bug
This commit is contained in:
parent
0bc7b61d3c
commit
638884e85d
@ -481,7 +481,7 @@ export default {
|
||||
this.dialogVisible3= false;
|
||||
|
||||
},
|
||||
inquire(flag){
|
||||
async inquire(flag){
|
||||
this.worker.pageNo = 1;
|
||||
|
||||
if(flag == 2) {
|
||||
@ -493,7 +493,22 @@ export default {
|
||||
// this.workerInfo.teamId = "";
|
||||
// this.$refs.searchRef.resetFields
|
||||
}
|
||||
this.getWorkerInfoList();
|
||||
await this.getWorkerInfoList();
|
||||
|
||||
setTimeout(() => {
|
||||
this.$nextTick(() => {
|
||||
for(let i=0;i<this.workerList.length;i++ ){
|
||||
for(let j=0;j<this.selectedWorkerList.length;j++){
|
||||
if(this.workerList[i].id == this.selectedWorkerList[j].id){
|
||||
console.log(this.workerList[i])
|
||||
console.log(this.selectedWorkerList[j])
|
||||
this.$refs.multipleTable.toggleRowSelection(this.workerList[i],true)
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
},10)
|
||||
|
||||
},
|
||||
async getWorkerInfoList (){
|
||||
// this.workerInfo.departmentAndTeam.gtMaterialDepartmentTeamId = ''
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user