diff --git a/src/views/projectFront/laborManage/personModule/administration.vue b/src/views/projectFront/laborManage/personModule/administration.vue
index 6e6a0d5e..65c358df 100644
--- a/src/views/projectFront/laborManage/personModule/administration.vue
+++ b/src/views/projectFront/laborManage/personModule/administration.vue
@@ -1767,6 +1767,33 @@
label-position="top"
label-width="80px"
>
+
+
+
+
+
+
+
{
this.$refs["batchMoveForm"].clearValidate();
}, 120);
},
+ //选择批量移动的 公司时
+ changeMoveCompany(value) {
+ this.batchMoveForm.departmentId = "";
+ let data = {
+ enterpriseId: value,
+ projectSn: this.projectSn,
+ };
+ getDepartmentInfoList(data).then((res) => {
+ console.log("移动时,部门列表数据=====:", res);
+ if (res.code == 200) {
+ // this.checkedTeamId = 0;
+ // this.checkedTeamId = type !== 1 ? 0 : this.checkedTeamId;
+ this.teamListData = res.result;
+ // this.getTableData();
+ }
+ });
+ // getTeamInfoList(data).then((res) => {
+ // if (res.code == 200) {
+ // this.moveTeamList = res.result;
+ // }
+ // });
+ },
//批量移动 保存按钮
saveBatchMove(formName) {