checkin.js 1.02 KB
/*
 * @Date: 2025-03-21 13:28:30
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2025-03-21 13:33:06
 * @FilePath: /mlaj/src/router/checkin.js
 * @Description: 文件描述
 */
export default [
  {
    path: '/checkin/reading',
    name: 'ReadingCheckIn',
    component: () => import('@/views/checkin/ReadingCheckInPage.vue'),
    meta: {
      title: '阅读打卡',
      requiresAuth: true
    }
  },
  {
    path: '/checkin/exercise',
    name: 'ExerciseCheckIn',
    component: () => import('@/views/checkin/ExerciseCheckInPage.vue'),
    meta: {
      title: '运动打卡',
      requiresAuth: true
    }
  },
  {
    path: '/checkin/study',
    name: 'StudyCheckIn',
    component: () => import('@/views/checkin/StudyCheckInPage.vue'),
    meta: {
      title: '学习打卡',
      requiresAuth: true
    }
  },
  {
    path: '/checkin/writing',
    name: 'WritingCheckIn',
    component: () => import('@/views/checkin/WritingCheckInPage.vue'),
    meta: {
      title: '反思打卡',
      requiresAuth: true
    }
  }
]