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-06-13 14:02:47 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4a9f3ef4d87cc8bceb70b6053107c0f2dd625dff
4a9f3ef4
1 parent
a562eb6a
fix(StudyDetailPage): 处理课程时间为空的情况
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/views/study/StudyDetailPage.vue
src/views/study/StudyDetailPage.vue
View file @
4a9f3ef
...
...
@@ -90,7 +90,7 @@
<div id="intro" class="py-4 px-4">
<h1 class="text-lg font-bold mb-2">{{ course.title }}</h1>
<div class="text-gray-500 text-sm flex items-center gap-2">
<span>开课时间 {{
dayjs(course.schedule_time).format('YYYY-MM-DD HH:mm:ss')
}}</span>
<span>开课时间 {{
course.schedule_time ? dayjs(course.schedule_time).format('YYYY-MM-DD HH:mm:ss') : '暂无'
}}</span>
<!-- <span class="text-gray-300">|</span> -->
<!-- <span>没有字段{{ course.studyCount || 0 }}次学习</span> -->
</div>
...
...
Please
register
or
login
to post a comment