From 7c184c7ac2dd3b55acc6d2b98c04e94c964b048f Mon Sep 17 00:00:00 2001 From: wyx Date: Tue, 3 Jan 2023 16:27:36 +0800 Subject: [PATCH 1/2] =?UTF-8?q?style:=E5=A2=9E=E5=8A=A0=E5=AD=A6=E4=B9=A0?= =?UTF-8?q?=E8=B7=AF=E5=BE=84=E5=9B=BE=E5=90=84=E4=BB=BB=E5=8A=A1=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E7=95=8C=E9=9D=A2=E5=8F=8A=E5=8F=82=E6=95=B0=E4=BC=A0?= =?UTF-8?q?=E9=80=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../drawers/router/RouterCommonManage.vue | 534 +++++++++++++ .../drawers/router/RouterEvaluationManage.vue | 593 +++++++++++++++ .../router/RouterExaminationManage.vue | 614 +++++++++++++++ .../drawers/router/RouterFaceTeachManage.vue | 711 ++++++++++++++++++ .../drawers/router/RouterHomeworkManage.vue | 689 +++++++++++++++++ src/views/learningpath/LevelAdd.vue | 115 ++- 6 files changed, 3250 insertions(+), 6 deletions(-) create mode 100644 src/components/drawers/router/RouterCommonManage.vue create mode 100644 src/components/drawers/router/RouterEvaluationManage.vue create mode 100644 src/components/drawers/router/RouterExaminationManage.vue create mode 100644 src/components/drawers/router/RouterFaceTeachManage.vue create mode 100644 src/components/drawers/router/RouterHomeworkManage.vue 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 @@ + + + + + + \ 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 @@ + + + + + + \ 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 @@ + + + + + + \ 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 @@ + + + + + + \ 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 @@ + + + + + + \ 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="课程二维码" /> + + + + + + + + + + + + + + + + + + + +