From d08cc33ff4fd999371e21c0c4b009654cf40d4ff Mon Sep 17 00:00:00 2001 From: yangjun <1173114630@qq.com> Date: Tue, 30 Jul 2024 20:39:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=96=B0=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/routes/modules/stuzy/stuzy.ts | 8 + src/views/site/studentWdkc/studentMenu.vue | 5 + src/views/zy/zyInfo/ZyInfoV2List.vue | 176 +++++++---- .../zy/zyInfo/components/ZyInfoDetailForm.vue | 147 +++++++++- .../KcTeachingUnitContentOneList.vue | 12 +- .../zy/zyInfoStudent/ZyInfoStudent.data.ts | 2 +- .../components/ZyInfoStudentForm.vue | 134 ++++++++- .../components/ZyInfoStudentModal.vue | 2 +- .../components/ZyInfoStudentScoreForm.vue | 36 ++- .../zy/zyInfoStudentHp/ZyInfoStudentHp.api.ts | 85 ++++++ .../zyInfoStudentHp/ZyInfoStudentHp.data.ts | 117 ++++++++ .../zyInfoStudentHp/ZyInfoStudentHpList.vue | 273 ++++++++++++++++++ .../components/ZyInfoStudentHpForm.vue | 163 +++++++++++ .../components/ZyInfoStudentHpModal.vue | 75 +++++ .../components/ZyInfoStudentHpOneForm.vue | 133 +++++++++ .../components/ZyInfoStudentHpOneModal.vue | 75 +++++ 16 files changed, 1358 insertions(+), 85 deletions(-) create mode 100644 src/views/zy/zyInfoStudentHp/ZyInfoStudentHp.api.ts create mode 100644 src/views/zy/zyInfoStudentHp/ZyInfoStudentHp.data.ts create mode 100644 src/views/zy/zyInfoStudentHp/ZyInfoStudentHpList.vue create mode 100644 src/views/zy/zyInfoStudentHp/components/ZyInfoStudentHpForm.vue create mode 100644 src/views/zy/zyInfoStudentHp/components/ZyInfoStudentHpModal.vue create mode 100644 src/views/zy/zyInfoStudentHp/components/ZyInfoStudentHpOneForm.vue create mode 100644 src/views/zy/zyInfoStudentHp/components/ZyInfoStudentHpOneModal.vue diff --git a/src/router/routes/modules/stuzy/stuzy.ts b/src/router/routes/modules/stuzy/stuzy.ts index c017578..e1de63d 100644 --- a/src/router/routes/modules/stuzy/stuzy.ts +++ b/src/router/routes/modules/stuzy/stuzy.ts @@ -78,6 +78,14 @@ const stuzy: AppRouteModule = { title: '讨论区', }, }, + { + path: 'zyhp', + name: 'zyhp', + component: () => import('/@/views/zy/zyInfoStudentHp/ZyInfoStudentHpList.vue'), + meta: { + title: '作业互评', + }, + }, ] } diff --git a/src/views/site/studentWdkc/studentMenu.vue b/src/views/site/studentWdkc/studentMenu.vue index 09aac40..fad7fd6 100644 --- a/src/views/site/studentWdkc/studentMenu.vue +++ b/src/views/site/studentWdkc/studentMenu.vue @@ -19,6 +19,9 @@ 课程作业 + 课程测验 @@ -112,6 +115,8 @@ href = "/stuzy/StudentGonggaoList"; }else if(zytype=='tlq'){//讨论区 href = "/stuzy/stuTlq"; + }else if(zytype=='zyhp'){//作业互评 + href = "/stuzy/zyhp"; }else if(zytype == 'stuJiaoXueDanYuanNeiRong'){//教学单元内容 router.push({ name: 'stuJiaoXueDanYuanNeiRong', query: { rwbh,xqxn,type,teano } }); return; diff --git a/src/views/zy/zyInfo/ZyInfoV2List.vue b/src/views/zy/zyInfo/ZyInfoV2List.vue index e386806..d400515 100644 --- a/src/views/zy/zyInfo/ZyInfoV2List.vue +++ b/src/views/zy/zyInfo/ZyInfoV2List.vue @@ -30,7 +30,7 @@