From 7fe5ef4a7c44a0cd378bff3e1e19395b95dbf12c Mon Sep 17 00:00:00 2001 From: yuping <82253452@qq.com> Date: Thu, 15 Dec 2022 15:43:34 +0800 Subject: [PATCH] init --- src/views/ballot/BallotPage.vue | 105 +++++++++++----------- src/views/debate/DebatePage.vue | 6 +- src/views/discuss/DiscussPage.vue | 6 +- src/views/discussdetail/DiscussDetail.vue | 6 +- src/views/examination/ExamPage.vue | 6 +- src/views/homework/HomeworkPage.vue | 6 +- src/views/liveBroadcast/LiveBroadcast.vue | 6 +- src/views/moreActive/MoreActive.vue | 6 +- src/views/project/ProjectDetails.vue | 63 +++++++------ src/views/roadmap/LearnPath.vue | 90 +++++++++---------- src/views/roadmap/PathDetails.vue | 61 ++++++------- src/views/survey/SurveyDetail.vue | 6 +- 12 files changed, 179 insertions(+), 188 deletions(-) diff --git a/src/views/ballot/BallotPage.vue b/src/views/ballot/BallotPage.vue index 539c00c..1cd6a0e 100644 --- a/src/views/ballot/BallotPage.vue +++ b/src/views/ballot/BallotPage.vue @@ -2,9 +2,9 @@
-
混合制项目
+
{{ pName }}
/
-
管理者进阶-腾飞班
+
{{ sName }}
/
投票详情
@@ -24,8 +24,8 @@
参与情况
@@ -36,8 +36,8 @@
{{ dataInfo.numberOfInvolved || dataInfo.numberOfInvolved == 0 - ? dataInfo.numberOfInvolved - : "-" + ? dataInfo.numberOfInvolved + : "-" }}
参与数
@@ -46,8 +46,8 @@
{{ dataInfo.votesTotal || dataInfo.votesTotal == 0 - ? dataInfo.votesTotal - : "-" + ? dataInfo.votesTotal + : "-" }}
总票数
@@ -56,8 +56,8 @@
{{ dataInfo.numberOfBrowse || dataInfo.numberOfBrowse == 0 - ? dataInfo.numberOfBrowse - : "-" + ? dataInfo.numberOfBrowse + : "-" }}
浏览数
@@ -66,8 +66,8 @@
参与投票
@@ -75,9 +75,9 @@
{{ item.orderNumber }}、
@@ -85,21 +85,21 @@
@@ -109,7 +109,7 @@
投票时间
@@ -140,21 +140,21 @@
距离结束还有   {{ - parseInt( - dayjs(dataInfo?.voteEndTime).diff(dayjs(), "minute") / 60 - ) - }}   小时  {{ dayjs(dataInfo?.voteEndTime).diff(dayjs(), "minute") % 60 }}  分钟 + >  分钟
投票说明
@@ -162,8 +162,8 @@
@@ -177,16 +177,13 @@ @@ -399,26 +397,26 @@ const submitVote = () => {}; .allbox1 { margin-right: 22px; background: linear-gradient( - 0deg, - rgba(160, 193, 230, 0) 0%, - rgba(161, 195, 231, 0.2) 100% + 0deg, + rgba(160, 193, 230, 0) 0%, + rgba(161, 195, 231, 0.2) 100% ); } .allbox2 { margin-right: 22px; background: linear-gradient( - 0deg, - rgba(177, 219, 229, 0) 0%, - rgba(172, 216, 227, 0.2) 100% + 0deg, + rgba(177, 219, 229, 0) 0%, + rgba(172, 216, 227, 0.2) 100% ); } .allbox3 { background: linear-gradient( - 0deg, - rgba(195, 209, 234, 0) 0%, - rgba(191, 206, 231, 0.2) 100% + 0deg, + rgba(195, 209, 234, 0) 0%, + rgba(191, 206, 231, 0.2) 100% ); } @@ -453,6 +451,7 @@ const submitVote = () => {}; margin-top: 32px; margin-left: 21px; flex: 1; + .stem { display: flex; font-size: 16px; @@ -460,22 +459,26 @@ const submitVote = () => {}; color: #333330; line-height: 38px; } + .options { display: flex; align-items: center; flex-wrap: wrap; } + .radio { margin-top: 14px; margin-left: -16px; position: relative; } + .radio label { line-height: 20px; position: relative; display: flex; align-items: center; font-weight: normal; + .opt-text { font-size: 14px; font-weight: bold; diff --git a/src/views/debate/DebatePage.vue b/src/views/debate/DebatePage.vue index abf271a..4c04cc0 100644 --- a/src/views/debate/DebatePage.vue +++ b/src/views/debate/DebatePage.vue @@ -2,9 +2,9 @@
-
混合制项目
+
{{ pName }}
/
-
管理者进阶-腾飞班
+
{{ sName }}
/
辩论详情
@@ -85,7 +85,7 @@ import { TASK_VOTE_DETAIL, VOTE_DETAIL } from "@/api/api"; import { useRoute } from "vue-router/dist/vue-router"; const { - query: { id: voteSubmitId }, + query: { id: voteSubmitId, pName, sName }, } = useRoute(); const { data } = useRequest(TASK_VOTE_DETAIL, { voteSubmitId }); const { data: voteDetail } = useRequest(VOTE_DETAIL, { voteSubmitId }); diff --git a/src/views/discuss/DiscussPage.vue b/src/views/discuss/DiscussPage.vue index 5f1620c..15874fc 100644 --- a/src/views/discuss/DiscussPage.vue +++ b/src/views/discuss/DiscussPage.vue @@ -5,9 +5,9 @@ style="display: flex; align-items: center; justify-content: space-between" >
-
混合制项目
+
{{ pName }}
/
-
管理者进阶-腾飞班
+
{{ sName }}
/
讨论详情
@@ -110,7 +110,7 @@ import { useRoute, useRouter } from "vue-router"; const router = useRouter(); const { - query: { id, type }, + query: { id, type, pName, sName }, } = useRoute(); const param = ref({ diff --git a/src/views/discussdetail/DiscussDetail.vue b/src/views/discussdetail/DiscussDetail.vue index 5e2fc7c..78530f3 100644 --- a/src/views/discussdetail/DiscussDetail.vue +++ b/src/views/discussdetail/DiscussDetail.vue @@ -5,9 +5,9 @@ style="display: flex; align-items: center; justify-content: space-between" >
-
混合制项目
+
{{ pName }}
/
-
管理者进阶-腾飞班
+
{{ sName }}
/
讨论详情
@@ -295,7 +295,7 @@ import { import UploadImg from "@/components/img/UploadImg.vue"; const { - query: { id, discussSubmitId, type }, + query: { id, discussSubmitId, type, pName, sName }, } = useRoute(); const { data: commontList, fetchData: commonFetch } = usePage(COMMENT_LIST, { diff --git a/src/views/examination/ExamPage.vue b/src/views/examination/ExamPage.vue index e3ac65b..9e3dc3b 100644 --- a/src/views/examination/ExamPage.vue +++ b/src/views/examination/ExamPage.vue @@ -5,9 +5,9 @@ style="display: flex; align-items: center; justify-content: space-between" >
-
混合制项目
+
{{ pName }}
/
-
管理者进阶-腾飞班
+
{{ sName }}
/
考试详情
@@ -119,7 +119,7 @@ import { usePage, useRequest } from "@/api/request"; import { COMMENT_LIST, DISCUSS_DETAIL, EXAMINATION_QUERY } from "@/api/api"; const { - query: { id, discussSubmitId }, + query: { id, discussSubmitId, pName, sName }, } = useRoute(); const { data } = useRequest(EXAMINATION_QUERY(159), {}); diff --git a/src/views/homework/HomeworkPage.vue b/src/views/homework/HomeworkPage.vue index ab683d0..9243d07 100644 --- a/src/views/homework/HomeworkPage.vue +++ b/src/views/homework/HomeworkPage.vue @@ -2,9 +2,9 @@
-
混合制项目
+
{{ pName }}
/
-
管理者进阶-腾飞班
+
{{ sName }}
/
作业详情
@@ -268,7 +268,7 @@ const sbValue = ref({ const router = useRouter(); const { - query: {courseId: workId, type, id: taskId}, + query: {courseId: workId, type, id: taskId, pName, sName}, } = useRoute(); const {data} = useRequest(TASK_WORK_DETAIL, {workId, taskId}); diff --git a/src/views/liveBroadcast/LiveBroadcast.vue b/src/views/liveBroadcast/LiveBroadcast.vue index 9ab95e1..d48fd53 100644 --- a/src/views/liveBroadcast/LiveBroadcast.vue +++ b/src/views/liveBroadcast/LiveBroadcast.vue @@ -2,9 +2,9 @@
-
混合制项目
+
{{ pName }}
/
-
管理者进阶-腾飞班
+
{{ sName }}
/
直播详情
@@ -161,7 +161,7 @@ import { useUserInfo } from "@/api/utils"; import { ElMessage } from "element-plus"; const { - query: { courseId: liveId, id: taskId, type }, + query: { courseId: liveId, id: taskId, type, pName, sName }, } = useRoute(); const router = useRouter(); diff --git a/src/views/moreActive/MoreActive.vue b/src/views/moreActive/MoreActive.vue index 989f3e0..fe0ac90 100644 --- a/src/views/moreActive/MoreActive.vue +++ b/src/views/moreActive/MoreActive.vue @@ -2,9 +2,9 @@
-
混合制项目
+
{{ pName }}
/
-
管理者进阶-腾飞班
+
{{ sName }}
/
活动详情
@@ -137,7 +137,7 @@ import {useRoute} from "vue-router/dist/vue-router"; import {ElMessage} from "element-plus"; const { - query: {courseId: activityId, id: taskId, type}, + query: {courseId: activityId, id: taskId, type, pName, sName}, } = useRoute(); const {data} = useRequest(ACTIVITY, {activityId}); diff --git a/src/views/project/ProjectDetails.vue b/src/views/project/ProjectDetails.vue index 0a6e603..c498a50 100644 --- a/src/views/project/ProjectDetails.vue +++ b/src/views/project/ProjectDetails.vue @@ -2,12 +2,12 @@
-
产品经理学习路径图
-
/
-
路径图详情
+ + +
项目详情
-
中级产品经理
+
{{ useInfo.bandDesc }}
@@ -132,36 +132,31 @@
- 请各位选课的同学提前阅读本课程的 - “教学大纲与计划”“课程考核要求”与“学习要求” - ,并按给定的中学化学教学主题分好小组
- 每位同学在网上学习的活动轨迹都会自动被系统记录将作为大家个人线上参与的评价依据;
- 请大家务必在规定的时间内提交作业,否则会被系统自动记录为“迟交”或“未交”则会影响线上参与的平时成 - 绩;
+ {{data.remark || '暂无公告'}}
-
-
- -
{{ value.name }}
-
- -
下载
-
-
-
+ + + + + + + + + + + + + + + + + + + + +
@@ -302,7 +297,7 @@ diff --git a/src/views/survey/SurveyDetail.vue b/src/views/survey/SurveyDetail.vue index affcfbf..561a9ad 100644 --- a/src/views/survey/SurveyDetail.vue +++ b/src/views/survey/SurveyDetail.vue @@ -5,9 +5,9 @@ style="display: flex; align-items: center; justify-content: space-between" >
-
混合制项目
+
{{ pName }}
/
-
管理者进阶-腾飞班
+
{{ sName }}
/
调研详情
@@ -178,7 +178,7 @@ import { import {ElMessage} from "element-plus"; const { - query: {courseId, id: taskId, type}, + query: {courseId, id: taskId, type, pName, sName}, } = useRoute(); const {data} = useRequest(ASSESSMENT_QUERY(courseId), {id: courseId});