Merge branch 'master' of ssh://gitlab.dongwu-inc.com:10022/BOE/fe-manage

This commit is contained in:
songwc
2022-10-21 15:46:11 +08:00
26 changed files with 2700 additions and 637 deletions

View File

@@ -1045,6 +1045,8 @@
<stu-add v-model:Stuvisible="Stuvisible" />
<!-- 学员管理-导入学员抽屉 -->
<import-stu v-model:Importvisible="Importvisible" />
<!-- 查看学员 -->
<see-stu v-model:Seevisible="Seevisible" />
<!-- 组员名单抽屉 -->
<member-list v-model:Lvisible="Lvisible" />
<!-- 面授学员抽屉 -->
@@ -1211,7 +1213,7 @@
<!-- 学员-创建小组弹窗 -->
</div>
</template>
<script>
<script>
import { reactive, toRefs } from "vue";
import TimeManage from "../../components/drawers/TimeManage";
import FaceManage from "../../components/drawers/FaceManage";
@@ -1223,6 +1225,7 @@ import FaceStu from "../../components/drawers/FaceStu";
import TestManage from "../../components/drawers/TestManage";
import StuAdd from "../../components/drawers/StuAdd";
import ImportStu from "../../components/drawers/ImportStu";
import SeeStu from "../../components/drawers/SeeStu";
export default {
name: "taskPage",
components: {
@@ -1236,6 +1239,7 @@ export default {
TestManage,
StuAdd,
ImportStu,
SeeStu,
},
setup() {
const state = reactive({
@@ -1402,6 +1406,7 @@ export default {
TMvisible: false, //考试管理
Stuvisible: false, //添加学员
Importvisible: false, //导入学员
Seevisible: true, //查看学员
pubproject: false,
stugroup: false,
checked: false,
@@ -1789,6 +1794,9 @@ export default {
const showStuAdd = () => {
state.Stuvisible = true;
};
const showSeeStu = () => {
state.Seevisible = true;
};
const showImportStu = () => {
state.Importvisible = true;
};
@@ -1816,6 +1824,7 @@ export default {
changecheck3,
showStuAdd,
showImportStu,
showSeeStu,
};
},
};
@@ -3113,4 +3122,3 @@ export default {
}
}
</style>