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