Showing
2 changed files
with
12 additions
and
6 deletions
| ... | @@ -194,11 +194,17 @@ export const userProfile = { | ... | @@ -194,11 +194,17 @@ export const userProfile = { |
| 194 | }; | 194 | }; |
| 195 | 195 | ||
| 196 | // Daily check-in data | 196 | // Daily check-in data |
| 197 | +// export const checkInTypes = [ | ||
| 198 | +// { id: 'reading', name: '阅读打卡', icon: 'book', path: '/checkin/reading' }, | ||
| 199 | +// { id: 'exercise', name: '运动打卡', icon: 'running', path: '/checkin/exercise' }, | ||
| 200 | +// { id: 'study', name: '学习打卡', icon: 'graduation-cap', path: '/checkin/study' }, | ||
| 201 | +// { id: 'reflection', name: '反思打卡', icon: 'pencil-alt', path: '/checkin/writing' } | ||
| 202 | +// ]; | ||
| 197 | export const checkInTypes = [ | 203 | export const checkInTypes = [ |
| 198 | - { id: 'reading', name: '阅读打卡', icon: 'book', path: '/checkin/reading' }, | 204 | + { id: 'reading', name: '课程打卡', icon: 'book', path: '/checkin/reading' }, |
| 199 | - { id: 'exercise', name: '运动打卡', icon: 'running', path: '/checkin/exercise' }, | 205 | + { id: 'exercise', name: '签到打卡', icon: 'running', path: '/checkin/exercise' }, |
| 200 | - { id: 'study', name: '学习打卡', icon: 'graduation-cap', path: '/checkin/study' }, | 206 | + { id: 'study', name: '团队打卡', icon: 'graduation-cap', path: '/checkin/study' }, |
| 201 | - { id: 'reflection', name: '反思打卡', icon: 'pencil-alt', path: '/checkin/writing' } | 207 | + { id: 'reflection', name: '学习打卡', icon: 'pencil-alt', path: '/checkin/writing' } |
| 202 | ]; | 208 | ]; |
| 203 | 209 | ||
| 204 | // Community posts data | 210 | // Community posts data | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2025-03-20 19:55:21 | 2 | * @Date: 2025-03-20 19:55:21 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2025-04-29 14:31:56 | 4 | + * @LastEditTime: 2025-05-15 11:56:30 |
| 5 | * @FilePath: /mlaj/src/views/HomePage.vue | 5 | * @FilePath: /mlaj/src/views/HomePage.vue |
| 6 | * @Description: 亲子学院首页组件 | 6 | * @Description: 亲子学院首页组件 |
| 7 | * | 7 | * |
| ... | @@ -259,7 +259,7 @@ | ... | @@ -259,7 +259,7 @@ |
| 259 | <div class="px-4 border-b border-gray-200"> | 259 | <div class="px-4 border-b border-gray-200"> |
| 260 | <div class="flex space-x-6"> | 260 | <div class="flex space-x-6"> |
| 261 | <button | 261 | <button |
| 262 | - v-for="tab in ['推荐', '直播', '精选']" | 262 | + v-for="tab in ['推荐', '直播']" |
| 263 | :key="tab" | 263 | :key="tab" |
| 264 | @click="activeTab = tab" | 264 | @click="activeTab = tab" |
| 265 | :class="[ | 265 | :class="[ | ... | ... |
-
Please register or login to post a comment