diff --git a/src/components/student/CommonStudent.vue b/src/components/student/CommonStudent.vue index 9b474053..7ddcaedc 100644 --- a/src/components/student/CommonStudent.vue +++ b/src/components/student/CommonStudent.vue @@ -295,7 +295,7 @@ import { AUDIENCE_LIST, ORG_CHILD_LIST, ORG_LIST, - // USER_LIST, + // USER_LIST, USER_LIST_PAGE, } from "@/api/ThirdApi"; import { @@ -700,7 +700,7 @@ function onOrgSelectChange(e, l) { selectsData.value.deptList = l.selectedNodes; // 获取被点击的树节点 - + } function onAuditSelectChange(e, l) { @@ -781,7 +781,7 @@ function handleStageOk() { // 判断是否是组长,组长不能添加 const leaderArray = selectsData.value.projectMemberList.filter(item => item.isLeader === '1'); if (leaderArray.length > 0) { - return message.warning("当前选学员"+leaderArray[0].realName+"已在其他小组为小组长,请勿重复选择。"); + return message.warning("当前选中学员"+leaderArray[0].realName+"已是小组长,请勿重复选择。"); } // 对选中的人员进行判断是否已经分组了 let haveGroupNum = selectsData.value.projectMemberList.filter(item => item.groupId !== null);