Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
mlaj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-09-30 10:03:25 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e51db674eea8f1bc81db45f678b27c44b745d8d4
e51db674
1 parent
1607980a
fix: 修正课程详情页小节显示为开课时间的问题
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/views/courses/CourseDetailPage.vue
src/views/courses/CourseDetailPage.vue
View file @
e51db67
...
...
@@ -90,7 +90,7 @@
<div class="space-y-4">
<div v-for="(item, index) in displayedSchedule" :key="index" class="border-l-2 border-green-500 pl-3" @click="goToStudyDetail(item)">
<h4 class="font-medium text-gray-800">{{ item.title }}</h4>
<p class="text-sm text-gray-600 mt-1">{{ item.duration }}分钟 ·
{{ item.schedule_time }}个小节
</p>
<p class="text-sm text-gray-600 mt-1">{{ item.duration }}分钟 ·
开课时间: {{ item.schedule_time }}
</p>
</div>
<div v-if="course?.schedule?.length > 4" class="flex justify-center mt-4">
<button @click="toggleSchedule"
...
...
Please
register
or
login
to post a comment