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:
@@ -1073,10 +1073,11 @@
|
||||
v-model:studentId="studentId"
|
||||
/>
|
||||
<!-- 面授学员抽屉 -->
|
||||
<RouterFaceStu v-model:FSvisible="FSvisible"
|
||||
:datasource="facestudent"
|
||||
:type="2"
|
||||
:routerId="routerId"
|
||||
<RouterFaceStu
|
||||
v-model:FSvisible="FSvisible"
|
||||
:datasource="facestudent"
|
||||
:type="2"
|
||||
:routerId="routerId"
|
||||
/>
|
||||
<!-- 活动考勤抽屉 -->
|
||||
<active-attendance
|
||||
@@ -1355,9 +1356,11 @@
|
||||
<!-- 项目管理抽屉 结束-->
|
||||
|
||||
<!-- 批量面授报名 -->
|
||||
<task-imp-stu v-model:TaskFaceImpStuvisible="TaskFaceImpStuvisible"
|
||||
:type="2"
|
||||
:routerId="routerId" />
|
||||
<task-imp-stu
|
||||
v-model:TaskFaceImpStuvisible="TaskFaceImpStuvisible"
|
||||
:type="2"
|
||||
:routerId="routerId"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
@@ -1425,7 +1428,7 @@ export default {
|
||||
setup() {
|
||||
const router = useRouter();
|
||||
const route = useRoute();
|
||||
const stuRef = ref()
|
||||
const stuRef = ref();
|
||||
// const store = useStore();
|
||||
const state = reactive({
|
||||
permissions: "",
|
||||
@@ -1920,7 +1923,7 @@ export default {
|
||||
// 考试点击管理弹框
|
||||
const examinationModel = (data, levelname, outchapterid) => {
|
||||
console.log(data);
|
||||
if (data.examType==2) {
|
||||
if (data.examType == 2) {
|
||||
// 外部考试
|
||||
state.examinationExaminaModelVisible = true;
|
||||
state.outchapter = outchapterid;
|
||||
@@ -2669,8 +2672,6 @@ export default {
|
||||
item.courseId +
|
||||
"&type=2&id=" +
|
||||
item.routerTaskId +
|
||||
"&status=" +
|
||||
item.status +
|
||||
"&chapterOrStageId=" +
|
||||
item.chapterId +
|
||||
"&infoId=" +
|
||||
@@ -2834,12 +2835,12 @@ export default {
|
||||
}
|
||||
state.visiblene = false;
|
||||
message.success("调整关卡成功");
|
||||
stuRef.value.startLoading()
|
||||
await moveStudent({targetId: state.curLevel, ids: [state.curStuID]})
|
||||
stuRef.value.startLoading();
|
||||
await moveStudent({ targetId: state.curLevel, ids: [state.curStuID] });
|
||||
state.curLevel = undefined;
|
||||
state.curStuID = "";
|
||||
state.curLevelName = "";
|
||||
stuRef.value.getStuList()
|
||||
stuRef.value.getStuList();
|
||||
}
|
||||
|
||||
// 面授课学员报名弹框
|
||||
|
||||
Reference in New Issue
Block a user