mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-15 13:56:45 +08:00
feat:接入添加小组成员数据
This commit is contained in:
@@ -803,7 +803,9 @@
|
||||
</div>
|
||||
<div
|
||||
class="grofooter"
|
||||
@click="showMemberList(item.projectGroupId)"
|
||||
@click="
|
||||
showMemberList(item.projectGroupId, item.groupName)
|
||||
"
|
||||
>
|
||||
<div class="ftext">组员名单 ></div>
|
||||
<!-- <div class="peoples">
|
||||
@@ -1496,7 +1498,7 @@
|
||||
</a-modal>
|
||||
|
||||
<!-- 学员(小组管理)创建小组抽屉 -->
|
||||
<subset-manage v-model:Svisible="subsetVisivle" />
|
||||
<subset-manage v-model:Svisible="subsetVisivle" :projectId="projectId" />
|
||||
<!-- 学员管理-添加学员抽屉 -->
|
||||
<!-- <stu-add v-model:Stuvisible="Stuvisible" /> -->
|
||||
<!-- 添加学员抽屉 -->
|
||||
@@ -1529,6 +1531,7 @@
|
||||
<member-list
|
||||
v-model:Lvisible="Lvisible"
|
||||
v-model:chooseGroupId="chooseGroupId"
|
||||
v-model:chooseGroupName="chooseGroupName"
|
||||
v-model:projectId="projectId"
|
||||
/>
|
||||
<!-- 面授学员抽屉 -->
|
||||
@@ -2425,7 +2428,8 @@ export default {
|
||||
TaskFaceImpStuvisible: false, //批量面授报名
|
||||
valuestugn: "", //小组管理的输入的小组名称
|
||||
checkStuId: null, //要查看的学员id
|
||||
chooseGroupId: null,
|
||||
chooseGroupId: null, //选择的小组id
|
||||
chooseGroupName: null, //选择的小组名称
|
||||
morFaceT: false, //批量面授报名按钮
|
||||
faceArr: [], //任务大纲列表所有name
|
||||
action: null,
|
||||
@@ -3216,10 +3220,11 @@ export default {
|
||||
console.log("facestudent", state.facestudent);
|
||||
};
|
||||
//面授学员的弹窗
|
||||
const showMemberList = (id) => {
|
||||
const showMemberList = (id, name) => {
|
||||
state.Lvisible = true;
|
||||
console.log("ssdsdsdsd", id);
|
||||
state.chooseGroupId = id;
|
||||
state.chooseGroupName = name;
|
||||
};
|
||||
//活动考勤的抽屉
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user