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-10-14 17:04:37 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
003ab427d5ae26d92bd1dcae999a89b35b71679c
003ab427
1 parent
d9e59892
fix(CheckinDetailPage): 修复作业描述显示条件判断错误
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/views/checkin/CheckinDetailPage.vue
src/views/checkin/CheckinDetailPage.vue
View file @
003ab42
...
...
@@ -3,7 +3,7 @@
<!-- 页面内容 -->
<div class="page-content">
<!-- 作业描述 -->
<div class="section-wrapper">
<div
v-if="taskDetail.note"
class="section-wrapper">
<div class="section-title">作业描述</div>
<div class="section-content">
<div v-if="taskDetail.note" class="description-text" v-html="taskDetail.note">
...
...
@@ -324,7 +324,7 @@ const getTaskDetail = async (month) => {
'audio': '音频',
'video': '视频'
}
// 如果是数组格式,转换为对象格式
if (Array.isArray(data.attachment_type)) {
attachmentTypeOptions.value = data.attachment_type.map(key => ({
...
...
Please
register
or
login
to post a comment