From b03a363c77af78cc3c357d781cc0b9167b25b81f Mon Sep 17 00:00:00 2001 From: wyx Date: Thu, 22 Dec 2022 21:43:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E9=A1=B9=E7=9B=AE/=E5=AD=A6=E4=B9=A0?= =?UTF-8?q?=E8=B7=AF=E5=BE=84=E5=9B=BE=E8=AF=A6=E6=83=85=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E8=BF=94=E5=9B=9E=E3=80=81=E4=BB=BB=E5=8A=A1=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E4=B8=8D=E6=98=BE=E7=A4=BA=E5=85=B3=E5=8D=A1/=E9=98=B6?= =?UTF-8?q?=E6=AE=B5=E5=90=8D=E7=A7=B0=E9=97=AE=E9=A2=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/homework/HomeworkPage.vue | 1 + src/views/project/ProjectDetails.vue | 26 ++++++++++++++++++++++---- src/views/roadmap/PathDetails.vue | 9 ++++++++- src/views/survey/SurveyDetail.vue | 4 ++++ 4 files changed, 35 insertions(+), 5 deletions(-) diff --git a/src/views/homework/HomeworkPage.vue b/src/views/homework/HomeworkPage.vue index a907609..f1f29b6 100644 --- a/src/views/homework/HomeworkPage.vue +++ b/src/views/homework/HomeworkPage.vue @@ -271,6 +271,7 @@ const showFileList = computed(() => { return fileList.value.length }) + const handleClick = () => { console.log(fileList.value, uploadRef.value) if (!sbValue.value.content) { diff --git a/src/views/project/ProjectDetails.vue b/src/views/project/ProjectDetails.vue index 75c84af..8648bcd 100644 --- a/src/views/project/ProjectDetails.vue +++ b/src/views/project/ProjectDetails.vue @@ -2,9 +2,16 @@
-
{{data.name}}
-
/
+
{{data.name}}
+
/
项目详情
+ +
+
+ +
返回
+
+
@@ -75,7 +82,7 @@
-
+
{{ value.status === 1 ? "已完成" @@ -373,7 +380,7 @@ function introductionPro() { } function toFinish(d, sName, chapterId) { - console.log("dddddd", d); + console.log("dddddd", d, sName); // 作业过期判断 if (d.type == 4) { let date1 = new Date(d.endTime).getTime(); @@ -490,6 +497,17 @@ function whiteTypes(type) { display: flex; font-size: 14px; line-height: 24px; + .return { + position: absolute; + right: 10%; + + .text { + text-align: center; + display: flex; + flex-direction: row; + align-items: center; + } + } } .pdname { diff --git a/src/views/roadmap/PathDetails.vue b/src/views/roadmap/PathDetails.vue index 0116756..2d3a7bd 100644 --- a/src/views/roadmap/PathDetails.vue +++ b/src/views/roadmap/PathDetails.vue @@ -5,6 +5,13 @@
{{ routerName }}
/
路径图详情
+ +
+
+ +
返回
+
+
@@ -448,7 +455,7 @@ function toFinish(d) { type: 1, courseId: d.courseId, pName: data.value.name, - sName:data.currentStageName, + sName:data.value.currentStageName, }, }); } else if (typeof types.value.path[d.type] === "function") { diff --git a/src/views/survey/SurveyDetail.vue b/src/views/survey/SurveyDetail.vue index 1853fbb..6528ef5 100644 --- a/src/views/survey/SurveyDetail.vue +++ b/src/views/survey/SurveyDetail.vue @@ -413,6 +413,10 @@ function formateArr(arr1) { const { data } = useRequest(ASSESSMENT_QUERY(courseId), { id: courseId }); console.log('我是需要排序得题目', data ) +function goHome() { + +} + const centerDialogVisible =ref(false); const open=()=>{ centerDialogVisible.value = true