diff --git a/src/components/Study.vue b/src/components/Study.vue index 89dfdba..764daf0 100644 --- a/src/components/Study.vue +++ b/src/components/Study.vue @@ -292,7 +292,10 @@ onMounted(() => { :class="{ active: selectedTaskId === item.taskId }" @click="selectedTaskId = item.taskId" > -

{{ item.title }}

+

+ {{ item.priority }} + {{ item.title }} +

状态:{{ item.lastLearningStatus }}

@@ -528,6 +531,23 @@ onMounted(() => { margin: 0; font-size: 15px; font-weight: 600; + display: flex; + align-items: center; + gap: 8px; +} + +.task-priority { + flex-shrink: 0; + width: 28px; + height: 28px; + border-radius: 8px; + background: var(--green-600); + color: #fff; + font-size: 12px; + font-weight: 700; + display: inline-flex; + align-items: center; + justify-content: center; } .task-meta {