mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-13 04:46:46 +08:00
feat:添加学员的添加组织,受众关联,导入学员,导入学员状态
This commit is contained in:
@@ -536,11 +536,11 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="second2" style="margin-top: 20px">
|
||||
<div class="btn1">
|
||||
<div class="btn1" @click="showStuAdd">
|
||||
<img src="../../assets/images/courseManage/add0.png" />
|
||||
<span class="btn1text">添加学员</span>
|
||||
</div>
|
||||
<div class="btn2">
|
||||
<div class="btn2" @click="showImportStu">
|
||||
<img src="../../assets/images/courseManage/reset2.png" />
|
||||
<span class="btn2text">导入学员</span>
|
||||
</div>
|
||||
@@ -1018,6 +1018,10 @@
|
||||
<face-manage v-model:Fvisible="FaceVisivle" />
|
||||
<!-- 学员(小组管理)创建小组抽屉 -->
|
||||
<subset-manage v-model:Svisible="subsetVisivle" />
|
||||
<!-- 学员管理-添加学员抽屉 -->
|
||||
<stu-add v-model:Stuvisible="Stuvisible" />
|
||||
<!-- 学员管理-导入学员抽屉 -->
|
||||
<import-stu v-model:Importvisible="Importvisible" />
|
||||
<!-- 组员名单抽屉 -->
|
||||
<member-list v-model:Lvisible="Lvisible" />
|
||||
<!-- 面授学员抽屉 -->
|
||||
@@ -1199,6 +1203,8 @@ import ActiveAttendance from "../../components/drawers/ActiveAttendance";
|
||||
import WorkManage from "../../components/drawers/WorkManage";
|
||||
import FaceStu from "../../components/drawers/FaceStu";
|
||||
import TestManage from "../../components/drawers/TestManage";
|
||||
import StuAdd from "../../components/drawers/StuAdd";
|
||||
import ImportStu from "../../components/drawers/ImportStu";
|
||||
export default {
|
||||
name: "taskPage",
|
||||
components: {
|
||||
@@ -1210,6 +1216,8 @@ export default {
|
||||
ActiveAttendance,
|
||||
WorkManage,
|
||||
TestManage,
|
||||
StuAdd,
|
||||
ImportStu,
|
||||
},
|
||||
setup() {
|
||||
const state = reactive({
|
||||
@@ -1374,6 +1382,8 @@ export default {
|
||||
AAvisible: false, //活动考勤
|
||||
Wvisible: false, //作业管理
|
||||
TMvisible: false, //考试管理
|
||||
Stuvisible: false, //添加学员
|
||||
Importvisible: false, //导入学员
|
||||
pubproject: false,
|
||||
stugroup: false,
|
||||
checked: false,
|
||||
@@ -1436,7 +1446,12 @@ export default {
|
||||
const showTest = () => {
|
||||
state.TMvisible = true;
|
||||
};
|
||||
|
||||
const showStuAdd = () => {
|
||||
state.Stuvisible = true;
|
||||
};
|
||||
const showImportStu = () => {
|
||||
state.Importvisible = true;
|
||||
};
|
||||
const changecheck2 = () => {
|
||||
state.checkedd = !state.checkedd;
|
||||
};
|
||||
@@ -1459,6 +1474,8 @@ export default {
|
||||
showTest,
|
||||
changecheck2,
|
||||
changecheck3,
|
||||
showStuAdd,
|
||||
showImportStu,
|
||||
};
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user