diff --git a/src/views/faceteach/FaceTeach.vue b/src/views/faceteach/FaceTeach.vue index 61221ca..9fd2f2d 100644 --- a/src/views/faceteach/FaceTeach.vue +++ b/src/views/faceteach/FaceTeach.vue @@ -424,6 +424,7 @@ function toSurvery() { chapterOrStageId: 0, sName: data.value.planDto.name, type: 3, + isSubmitTrue:data.value.isSurvery }, }); } diff --git a/src/views/investigat/InvestigatPage.vue b/src/views/investigat/InvestigatPage.vue index 0313b3f..a946913 100644 --- a/src/views/investigat/InvestigatPage.vue +++ b/src/views/investigat/InvestigatPage.vue @@ -2,6 +2,11 @@
+
+
项目名称:{{ data.projectInfoList[0].projectName }}
+
开课名称:{{ data.projectInfoList[0].courseName }}
+
培训讲师:{{ data.projectInfoList.map(item => item.teacherName).join(',') }}
+
@@ -276,7 +281,9 @@ const { type, chapterOrStageId, projectStatus, - projectEndTime, + projectEndTime, + isSubmitTrue, + level }, } = useRoute(); const router = useRouter(); @@ -292,7 +299,12 @@ const { data } = useRequest( type, chapterOrStageId, targetId: infoId ? infoId : 0, - }, + },(res)=>{ + if (res.code === 6) { + router.push({ + path: "/NotProject2", + }); + } }, (e) => { useRequest( checkStudentExist, @@ -385,6 +397,10 @@ function orderArr(a, b) { return arrs; } onMounted(() => { + if(isSubmitTrue){ + open(); + return + } useRequest( ASSESSMENT_QUERY(courseId),{ id: courseId, @@ -455,6 +471,10 @@ function submit() {