diff --git a/src/views/distribution/stockup/distributionStockup.vue b/src/views/distribution/stockup/distributionStockup.vue index a60ac896..797cb0a1 100644 --- a/src/views/distribution/stockup/distributionStockup.vue +++ b/src/views/distribution/stockup/distributionStockup.vue @@ -602,49 +602,25 @@ export default { }, //查询叉车人员 async getFork(){ - let ides = ''; - let ide = { }; - let b = false; await getListUser().then(res =>{ //查询当前人信息 - // console.log("res>>>",res.data.data); - if(res.data.data.userName != 'admin'){ - b = true; - } - ides = res.data.data.tenantId; - this.deptId = res.data.data.deptId; - }) - await getPostList(ides).then(res =>{ // 查询角色 - // console.log("查询>>>>",res.data.data); - res.data.data.forEach(i =>{ - if(i.postName == "叉车"){ - ide = i; - } - }) - }) - // console.log("ied>>>>>",ide); - let params={ - // postId: ide.id, //岗位 - deptId: this.deptId, //部门 - // roleId: '', //角色 - } - if(b){ - // console.log("进来了"); - params.postId = ide.id;//岗位 - } - getListOwn(Object.assign(params, this.query)).then(res =>{ //查询人员 - // console.log(".............",res.data.data); + // console.log("查询当前人信息>>>",res.data.data); let fo = []; res.data.data.forEach( i =>{ let a ={ dictKey: i.id, - dictValue: i.name + dictValue: i.realName }; fo.push(a); + if(!this.deptId){ + this.deptId =i.deptId; + } }); this.forkliftData = fo; + + this.deptId = res.data.data.deptId; }) - await this.getStorageArea(); - await this.getTeam(); + await this.getStorageArea(); + await this.getTeam(); }, //查询班组 diff --git a/src/views/distribution/stockup/distributionStockupDiscuss.vue b/src/views/distribution/stockup/distributionStockupDiscuss.vue index ece38ec0..7581883d 100644 --- a/src/views/distribution/stockup/distributionStockupDiscuss.vue +++ b/src/views/distribution/stockup/distributionStockupDiscuss.vue @@ -729,47 +729,22 @@ export default { }, //查询叉车人员 async getFork(){ - let ides = ''; - let ide = { }; - let b = false; await getListUser().then(res =>{ //查询当前人信息 - // console.log("res>>>",res.data.data); - if(res.data.data.userName != 'admin'){ - b = true; - } - ides = res.data.data.tenantId; - this.deptId = res.data.data.deptId; - }) - await getPostList(ides).then(res =>{ // 查询角色 - // console.log("查询>>>>",res.data.data); - res.data.data.forEach(i =>{ - if(i.postName == "叉车"){ - ide = i; - } - }) - }) - // console.log("ied>>>>>",ide); - let params={ - // postId: ide.id, //岗位 - deptId: this.deptId, //部门 - // roleId: '', //角色 - } - if(b){ - // console.log("进来了"); - params.postId = ide.id;//岗位 - } - // console.log("查询人员信息",params); - getListOwn(Object.assign(params, this.query)).then(res =>{ //查询人员 - // console.log(".............",res.data.data); + console.log("查询当前人信息>>>",res.data.data); let fo = []; res.data.data.forEach( i =>{ let a ={ dictKey: i.id, - dictValue: i.name + dictValue: i.realName }; fo.push(a); + if(!this.deptId){ + this.deptId =i.deptId; + } }); this.forkliftData = fo; + + this.deptId = res.data.data.deptId; }) await this.getStorageArea(); await this.getTeam(); diff --git a/src/views/distribution/stockup/distributionStockupMarket.vue b/src/views/distribution/stockup/distributionStockupMarket.vue index c5f8abeb..38bce22d 100644 --- a/src/views/distribution/stockup/distributionStockupMarket.vue +++ b/src/views/distribution/stockup/distributionStockupMarket.vue @@ -229,7 +229,6 @@