mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-15 22:06:45 +08:00
feat:删除状态
This commit is contained in:
@@ -1073,7 +1073,8 @@
|
|||||||
v-model:studentId="studentId"
|
v-model:studentId="studentId"
|
||||||
/>
|
/>
|
||||||
<!-- 面授学员抽屉 -->
|
<!-- 面授学员抽屉 -->
|
||||||
<RouterFaceStu v-model:FSvisible="FSvisible"
|
<RouterFaceStu
|
||||||
|
v-model:FSvisible="FSvisible"
|
||||||
:datasource="facestudent"
|
:datasource="facestudent"
|
||||||
:type="2"
|
:type="2"
|
||||||
:routerId="routerId"
|
:routerId="routerId"
|
||||||
@@ -1355,9 +1356,11 @@
|
|||||||
<!-- 项目管理抽屉 结束-->
|
<!-- 项目管理抽屉 结束-->
|
||||||
|
|
||||||
<!-- 批量面授报名 -->
|
<!-- 批量面授报名 -->
|
||||||
<task-imp-stu v-model:TaskFaceImpStuvisible="TaskFaceImpStuvisible"
|
<task-imp-stu
|
||||||
|
v-model:TaskFaceImpStuvisible="TaskFaceImpStuvisible"
|
||||||
:type="2"
|
:type="2"
|
||||||
:routerId="routerId" />
|
: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: "",
|
||||||
@@ -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