diff --git a/src/components/drawers/router/RouterCommonManage.vue b/src/components/drawers/router/RouterCommonManage.vue new file mode 100644 index 00000000..7be31cf4 --- /dev/null +++ b/src/components/drawers/router/RouterCommonManage.vue @@ -0,0 +1,534 @@ + + + + + + 【{{ + datasource.type === 1 + ? "在线" + : datasource.type === 3 + ? "案例" + : datasource.type === 6 + ? "直播" + : datasource.type === 7 + ? "外链" + : datasource.type === 8 + ? "讨论" + : datasource.type === 9 + ? "活动" + : datasource.type === 11 + ? "评估" + : "-" + }}】{{ title }} + + + + + 起止时间:2022-07-21 14:00 ~ 2022-7-30 14:00 + + + + 姓名: + + + + 任务状态: + + + + + + + + + 搜索 + + + + 重置 + + + + + + + 催促学习 + + + + 导出数据 + + + + + + + + + + + + + 取消 + 确定 + + + + + + + + + \ No newline at end of file diff --git a/src/components/drawers/router/RouterEvaluationManage.vue b/src/components/drawers/router/RouterEvaluationManage.vue new file mode 100644 index 00000000..c832e94e --- /dev/null +++ b/src/components/drawers/router/RouterEvaluationManage.vue @@ -0,0 +1,593 @@ + + + + + 【测评】{{ title }} + + + + 起止时间:2022-07-21 14:00 ~ 2022-7-30 14:00 + + + 姓名: + + + + 任务状态: + + + + + + + + 搜索 + + + + 重置 + + + + + + + 催促测评 + + + + 导出数据 + + + + + + + + + + + + + 取消 + 确定 + + + + + + + + + \ No newline at end of file diff --git a/src/components/drawers/router/RouterExaminationManage.vue b/src/components/drawers/router/RouterExaminationManage.vue new file mode 100644 index 00000000..f5476fb0 --- /dev/null +++ b/src/components/drawers/router/RouterExaminationManage.vue @@ -0,0 +1,614 @@ + + + + + 【考试】{{ title }} + + + + 起止时间:2022-07-21 14:00 ~ 2022-7-30 14:00 + + + 姓名: + + + + 任务状态: + + + + + + + + 搜索 + + + + 重置 + + + + + + + 催促考试 + + + + 导出数据 + + + 导入成绩 + + + + + + + + + + + + + 取消 + 确定 + + + + + + + + + + + \ No newline at end of file diff --git a/src/components/drawers/router/RouterFaceTeachManage.vue b/src/components/drawers/router/RouterFaceTeachManage.vue new file mode 100644 index 00000000..065c7f61 --- /dev/null +++ b/src/components/drawers/router/RouterFaceTeachManage.vue @@ -0,0 +1,711 @@ + + + + + 【面授】{{ title }} + + + + 起止时间:2022-07-21 14:00 ~ 2022-7-30 14:00 + + + 姓名: + + + + 任务状态: + + + + + + + + 搜索 + + + + 重置 + + + + + + + 催促学习 + + + 批量标注完成 + + + 批量录入成绩 + + + + 导出数据 + + + 导出作业 + + + + + + + 已选择 + {{ selectedRowKeys.length }} + 项 + 列表选项总计: + {{ tableDataTotal }}条 + + 清空 + + + + + + + + + + + + 取消 + 确定 + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/components/drawers/router/RouterHomeworkManage.vue b/src/components/drawers/router/RouterHomeworkManage.vue new file mode 100644 index 00000000..01ff3963 --- /dev/null +++ b/src/components/drawers/router/RouterHomeworkManage.vue @@ -0,0 +1,689 @@ + + + + + 【作业】{{ title }} + + + + 起止时间:2022-07-21 14:00 ~ 2022-7-30 14:00 + + + 姓名: + + + + 任务状态: + + + + + + + + 搜索 + + + + 重置 + + + + + + + 导出数据 + + + 导出作业 + + + 导入成绩 + + + + + + + + + + + + + 取消 + 确定 + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/views/learningpath/LevelAdd.vue b/src/views/learningpath/LevelAdd.vue index 7db10a31..3f985844 100644 --- a/src/views/learningpath/LevelAdd.vue +++ b/src/views/learningpath/LevelAdd.vue @@ -440,6 +440,8 @@ /> {{ + item.totalStuNum == 0 ? 0 : + item.finishStuNum == 0 ? 0 : parseInt( (item.finishStuNum / item.totalStuNum) * 100 ) @@ -490,13 +492,15 @@ item.type === 11 || item.type === 12 || item.type === 9 - ? showTime(item.type, item.name) - : item.type === 5 || item.type === 10 - ? showTest(item.type, item.name) + ? commonModel(item) : item.type === 2 - ? showFace(item.type) + ? faceTeachModel(item) : item.type === 4 - ? showWork(item.type) + ? evaluationModel(item) + : item.type === 5 + ? examinationModel(item) + : item.type === 10 + ? homeworkModel(item) : null " > @@ -1096,6 +1100,26 @@ type="课程二维码" /> + + + + + + + + + + + + + + + + + + + +