kindergarten_java/reading-platform-frontend/src/views/school/courses/CourseDetailView.vue

1347 lines
39 KiB
Vue
Raw Normal View History

<template>
<div class="course-detail-view">
2026-02-28 16:41:39 +08:00
<!-- 顶部导航 -->
<div class="detail-header">
<div class="header-left">
2026-02-28 16:41:39 +08:00
<a-button type="text" @click="router.back()">
<ArrowLeftOutlined />
</a-button>
2026-02-28 16:41:39 +08:00
<div class="course-title">
<h2>{{ course.name || '课程包详情' }}</h2>
<a-tag v-if="course.authorized" color="success" style="margin-left: 12px;">已授权</a-tag>
<a-tag v-else color="warning" style="margin-left: 12px;">未授权</a-tag>
</div>
</div>
2026-02-28 16:41:39 +08:00
<div class="header-actions">
<a-button @click="viewStats" v-if="course.authorized">
<BarChartOutlined /> 使用数据
</a-button>
</div>
</div>
<a-spin :spinning="loading">
<div class="detail-content">
2026-02-28 16:41:39 +08:00
<!-- 封面和基本信息 -->
<div class="cover-section" v-if="course.coverImagePath">
<img :src="getFileUrl(course.coverImagePath)" alt="课程封面" class="cover-image" />
</div>
<!-- 信息卡片网格 -->
<div class="info-grid">
<!-- 基本信息 -->
<div class="info-card basic-info">
<div class="card-header">
<span class="card-title">
<InfoCircleOutlined /> 基本信息
</span>
</div>
<div class="card-body">
<div class="info-row">
<span class="info-label">关联主题</span>
<span class="info-value">
<a-tag v-if="course.theme" color="blue">{{ course.theme.name }}</a-tag>
<span v-else class="empty-text">未设置</span>
</span>
</div>
2026-02-28 16:41:39 +08:00
<div class="info-row">
<span class="info-label">适用年级</span>
<span class="info-value">
<template v-if="grades.length > 0">
<a-tag v-for="grade in grades" :key="grade" :color="getGradeColor(grade)">
{{ grade }}
</a-tag>
</template>
<span v-else class="empty-text">未设置</span>
</span>
</div>
<div class="info-row">
<span class="info-label">关联绘本</span>
<span class="info-value">{{ course.pictureBookName || '未关联' }}</span>
</div>
<div class="info-row">
<span class="info-label">课程时长</span>
<span class="info-value">{{ course.duration || 25 }} 分钟</span>
</div>
<div class="info-row">
<span class="info-label">核心发展目标</span>
<span class="info-value">
<template v-if="domainTags.length > 0">
<a-tag v-for="tag in domainTags" :key="tag" color="purple" style="margin: 2px;">
{{ tag }}
</a-tag>
</template>
<span v-else class="empty-text">未设置</span>
</span>
</div>
<div class="info-row" v-if="course.coreContent">
<span class="info-label">核心内容</span>
<span class="info-value">{{ course.coreContent }}</span>
</div>
</div>
2026-02-28 16:41:39 +08:00
</div>
2026-02-28 16:41:39 +08:00
<!-- 统计数据 -->
<div class="info-card stats-card">
<div class="card-header">
<span class="card-title">
<BarChartOutlined /> 使用统计
</span>
</div>
<div class="card-body stats-body">
<div class="stat-item">
<div class="stat-value">{{ course.usageCount || 0 }}</div>
<div class="stat-label">使用次数</div>
</div>
2026-02-28 16:41:39 +08:00
<div class="stat-item">
<div class="stat-value">{{ course.teacherCount || 0 }}</div>
<div class="stat-label">使用教师</div>
</div>
<div class="stat-item">
<div class="stat-value">{{ course.avgRating?.toFixed(1) || '-' }}</div>
<div class="stat-label">平均评分</div>
</div>
</div>
</div>
<!-- 版本信息 -->
<div class="info-card version-card">
<div class="card-header">
<span class="card-title">
<ClockCircleOutlined /> 版本记录
</span>
</div>
<div class="card-body">
<div class="version-item">
<span class="version-label">当前版本</span>
<span class="version-value">v{{ course.version || '1.0' }}</span>
</div>
<div class="version-item">
<span class="version-label">创建时间</span>
<span class="version-value">{{ formatDate(course.createdAt) }}</span>
</div>
<div class="version-item">
<span class="version-label">更新时间</span>
<span class="version-value">{{ formatDate(course.updatedAt) }}</span>
</div>
<div class="version-item" v-if="course.publishedAt">
<span class="version-label">发布时间</span>
<span class="version-value">{{ formatDate(course.publishedAt) }}</span>
</div>
</div>
</div>
</div>
<!-- 课程介绍 -->
<div class="section-card" v-if="hasIntroContent">
<div class="section-header">
<span class="section-title">
<BookOutlined /> 课程介绍
</span>
<span class="completion-hint">{{ introCompletionCount }}/8 已填写</span>
</div>
<div class="section-body">
<a-tabs v-model:activeKey="activeIntroTab" type="card">
<a-tab-pane key="summary" tab="课程简介" v-if="course.introSummary">
<div class="intro-content">{{ course.introSummary }}</div>
</a-tab-pane>
<a-tab-pane key="highlights" tab="课程亮点" v-if="course.introHighlights">
<div class="intro-content">{{ course.introHighlights }}</div>
</a-tab-pane>
<a-tab-pane key="goals" tab="课程总目标" v-if="course.introGoals">
<div class="intro-content">{{ course.introGoals }}</div>
</a-tab-pane>
<a-tab-pane key="schedule" tab="内容安排" v-if="course.introSchedule">
<div class="intro-content">{{ course.introSchedule }}</div>
</a-tab-pane>
<a-tab-pane key="keyPoints" tab="重难点" v-if="course.introKeyPoints">
<div class="intro-content">{{ course.introKeyPoints }}</div>
</a-tab-pane>
<a-tab-pane key="methods" tab="教学方法" v-if="course.introMethods">
<div class="intro-content">{{ course.introMethods }}</div>
</a-tab-pane>
<a-tab-pane key="evaluation" tab="评价方式" v-if="course.introEvaluation">
<div class="intro-content">{{ course.introEvaluation }}</div>
</a-tab-pane>
<a-tab-pane key="notes" tab="注意事项" v-if="course.introNotes">
<div class="intro-content">{{ course.introNotes }}</div>
</a-tab-pane>
</a-tabs>
</div>
</div>
<!-- 排课参考 -->
<div class="section-card" v-if="scheduleRef.length > 0">
<div class="section-header">
<span class="section-title">
<CalendarOutlined /> 排课计划参考
</span>
</div>
<div class="section-body">
<a-table :dataSource="scheduleRef" :columns="scheduleColumns" :pagination="false" size="small" bordered>
<template #bodyCell="{ column, record }">
<template v-if="column.dataIndex === 'lessonType'">
<a-tag :color="getLessonTypeColor(record.lessonType)">
{{ translateLessonType(record.lessonType) }}
</a-tag>
</template>
</template>
</a-table>
</div>
</div>
<!-- 环创建设 -->
<div class="section-card" v-if="course.environmentConstruction">
<div class="section-header">
<span class="section-title">
<EnvironmentOutlined /> 环创建设
</span>
</div>
<div class="section-body">
<div class="intro-content">{{ course.environmentConstruction }}</div>
</div>
</div>
<!-- 课程配置 -->
<div class="section-card" v-if="courseLessons.length > 0">
<div class="section-header">
<span class="section-title">
<AppstoreOutlined /> 课程配置
</span>
<a-tag>{{ courseLessons.length }} 个课程</a-tag>
</div>
<div class="section-body">
<div class="lesson-cards">
<div
v-for="lesson in courseLessons"
:key="lesson.id"
class="lesson-card"
:class="'lesson-type-' + lesson.lessonType?.toLowerCase()"
>
<div class="lesson-header">
<div class="lesson-type-badge" :style="{ background: getLessonTypeBgColor(lesson.lessonType) }">
{{ translateLessonType(lesson.lessonType) }}
</div>
<div class="lesson-name">{{ lesson.name }}</div>
<div class="lesson-duration">{{ lesson.duration }}分钟</div>
</div>
<div class="lesson-body">
<!-- 教学目标 -->
<div class="lesson-section" v-if="lesson.objectives">
<div class="lesson-section-title">教学目标</div>
<div class="lesson-section-content">{{ lesson.objectives }}</div>
</div>
<!-- 教学准备 -->
<div class="lesson-section" v-if="lesson.preparation">
<div class="lesson-section-title">教学准备</div>
<div class="lesson-section-content">{{ lesson.preparation }}</div>
</div>
<!-- 核心资源 -->
<div class="lesson-section" v-if="hasLessonResources(lesson)">
<div class="lesson-section-title">核心资源</div>
<div class="resource-grid">
<div
v-if="lesson.videoPath"
class="resource-item"
@click="previewFile(lesson.videoPath, lesson.videoName || '绘本动画')"
>
<VideoCameraOutlined class="resource-icon video" />
<span class="resource-name">{{ lesson.videoName || '绘本动画' }}</span>
<EyeOutlined class="resource-action" />
</div>
2026-02-28 16:41:39 +08:00
<div
v-if="lesson.pptPath"
class="resource-item"
@click="previewFile(lesson.pptPath, lesson.pptName || '教学课件')"
>
<FilePptOutlined class="resource-icon ppt" />
<span class="resource-name">{{ lesson.pptName || '教学课件' }}</span>
<EyeOutlined class="resource-action" />
</div>
2026-02-28 16:41:39 +08:00
<div
v-if="lesson.pdfPath"
class="resource-item"
@click="previewFile(lesson.pdfPath, lesson.pdfName || '电子绘本')"
>
<FilePdfOutlined class="resource-icon pdf" />
<span class="resource-name">{{ lesson.pdfName || '电子绘本' }}</span>
<EyeOutlined class="resource-action" />
</div>
2026-02-28 16:41:39 +08:00
</div>
</div>
<!-- 教学环节 -->
<div class="lesson-section" v-if="lesson.steps && lesson.steps.length > 0">
<div class="lesson-section-title">教学环节 ({{ lesson.steps.length }})</div>
<div class="steps-timeline">
<div v-for="(step, index) in lesson.steps" :key="step.id || index" class="step-item">
<div class="step-dot">{{ index + 1 }}</div>
<div class="step-content">
<div class="step-name">{{ step.name }}</div>
<div class="step-duration">{{ step.duration }}分钟</div>
<div class="step-info" v-if="step.objective">目标{{ step.objective }}</div>
<div class="step-info" v-if="step.content">{{ step.content }}</div>
</div>
</div>
</div>
</div>
2026-02-28 16:41:39 +08:00
<!-- 教学延伸 -->
<div class="lesson-section" v-if="lesson.extension">
<div class="lesson-section-title">教学延伸</div>
<div class="lesson-section-content">{{ lesson.extension }}</div>
</div>
<!-- 教学反思 -->
<div class="lesson-section" v-if="lesson.reflection">
<div class="lesson-section-title">教学反思</div>
<div class="lesson-section-content">{{ lesson.reflection }}</div>
</div>
</div>
</div>
</div>
2026-02-28 16:41:39 +08:00
</div>
</div>
<!-- 数字资源汇总 -->
<div class="section-card" v-if="hasAnyResources">
<div class="section-header">
<span class="section-title">
<FolderOutlined /> 数字资源
</span>
<a-tag>{{ totalResourcesCount }} 个文件</a-tag>
</div>
<div class="section-body">
<div class="resources-grid">
<!-- 视频 -->
<div class="resource-group" v-if="allVideos.length > 0">
<div class="resource-group-title">
<VideoCameraOutlined style="color: #722ed1;" /> 视频资源
</div>
2026-02-28 16:41:39 +08:00
<div class="resource-list">
<div
v-for="(item, index) in allVideos"
:key="'video-' + index"
class="resource-item-card"
@click="previewFile(item.path, item.name)"
>
<VideoCameraOutlined class="item-icon" style="color: #722ed1;" />
<span class="item-name">{{ item.name }}</span>
<PlayCircleOutlined class="item-action" />
</div>
</div>
2026-02-28 16:41:39 +08:00
</div>
<!-- 音频 -->
<div class="resource-group" v-if="allAudios.length > 0">
<div class="resource-group-title">
<AudioOutlined style="color: #52c41a;" /> 音频资源
</div>
2026-02-28 16:41:39 +08:00
<div class="resource-list">
<div
v-for="(item, index) in allAudios"
:key="'audio-' + index"
class="resource-item-card"
@click="previewFile(item.path, item.name)"
>
<AudioOutlined class="item-icon" style="color: #52c41a;" />
<span class="item-name">{{ item.name }}</span>
<PlayCircleOutlined class="item-action" />
</div>
</div>
</div>
2026-02-28 16:41:39 +08:00
<!-- 文档 -->
<div class="resource-group" v-if="allDocuments.length > 0">
<div class="resource-group-title">
<FileTextOutlined style="color: #1890ff;" /> 文档资源
</div>
2026-02-28 16:41:39 +08:00
<div class="resource-list">
<div
v-for="(item, index) in allDocuments"
:key="'doc-' + index"
class="resource-item-card"
@click="previewFile(item.path, item.name)"
>
<FilePdfOutlined v-if="item.type === 'pdf'" class="item-icon" style="color: #f5222d;" />
<FilePptOutlined v-else-if="item.type === 'ppt'" class="item-icon" style="color: #fa8c16;" />
<FileTextOutlined v-else class="item-icon" style="color: #1890ff;" />
<span class="item-name">{{ item.name }}</span>
<EyeOutlined class="item-action" />
</div>
</div>
2026-02-28 16:41:39 +08:00
</div>
<!-- 图片 -->
<div class="resource-group" v-if="allImages.length > 0">
<div class="resource-group-title">
<PictureOutlined style="color: #13c2c2;" /> 图片资源
</div>
2026-02-28 16:41:39 +08:00
<div class="image-grid">
<img
v-for="(item, index) in allImages"
:key="'img-' + index"
:src="getFileUrl(item.path)"
:alt="item.name"
class="image-thumbnail"
@click="previewImage(getFileUrl(item.path))"
/>
</div>
</div>
</div>
2026-02-28 16:41:39 +08:00
</div>
</div>
2026-02-28 16:41:39 +08:00
<!-- 教师反馈汇总 -->
<div class="section-card" v-if="teacherFeedbacks.length > 0">
<div class="section-header">
<span class="section-title">
<CommentOutlined /> 教师反馈
</span>
<a-tag>{{ teacherFeedbacks.length }} </a-tag>
</div>
<div class="section-body">
<div class="feedback-list">
<div v-for="feedback in teacherFeedbacks" :key="feedback.id" class="feedback-item">
<div class="feedback-header">
<span class="feedback-teacher">{{ feedback.teacherName }}</span>
<span class="feedback-date">{{ formatDate(feedback.createdAt) }}</span>
<a-rate :value="feedback.rating" disabled style="font-size: 12px; margin-left: 8px;" />
</div>
2026-02-28 16:41:39 +08:00
<div class="feedback-content" v-if="feedback.content">{{ feedback.content }}</div>
</div>
</div>
2026-02-28 16:41:39 +08:00
</div>
</div>
</div>
</a-spin>
2026-02-28 16:41:39 +08:00
<!-- 图片预览 -->
<a-modal v-model:open="imagePreviewVisible" :footer="null" centered width="80%">
<img :src="previewImageUrl" style="width: 100%;" />
</a-modal>
<!-- 文件预览弹窗 -->
<FilePreviewModal
v-model:open="previewModalVisible"
:file-url="previewFileUrl"
:file-name="previewFileName"
/>
</div>
</template>
<script setup lang="ts">
2026-02-28 16:41:39 +08:00
import { ref, computed, onMounted } from 'vue';
import { useRouter, useRoute } from 'vue-router';
2026-02-28 16:41:39 +08:00
import { message } from 'ant-design-vue';
import {
2026-02-28 16:41:39 +08:00
ArrowLeftOutlined,
BarChartOutlined,
InfoCircleOutlined,
2026-02-28 16:41:39 +08:00
ClockCircleOutlined,
BookOutlined,
CalendarOutlined,
AppstoreOutlined,
FolderOutlined,
2026-02-28 16:41:39 +08:00
VideoCameraOutlined,
AudioOutlined,
FileTextOutlined,
FilePptOutlined,
2026-02-28 16:41:39 +08:00
FilePdfOutlined,
PictureOutlined,
EyeOutlined,
2026-02-28 16:41:39 +08:00
PlayCircleOutlined,
CommentOutlined,
EnvironmentOutlined,
} from '@ant-design/icons-vue';
import * as schoolApi from '@/api/school';
import { translateDomainTags } from '@/utils/tagMaps';
import FilePreviewModal from '@/components/FilePreviewModal.vue';
const router = useRouter();
const route = useRoute();
// 获取完整的文件 URL
const getFileUrl = (filePath: string | null | undefined): string => {
if (!filePath) return '';
if (filePath.startsWith('http://') || filePath.startsWith('https://')) {
return filePath;
}
2026-02-28 16:41:39 +08:00
if (filePath.startsWith('/uploads')) {
const SERVER_BASE = import.meta.env.VITE_SERVER_BASE_URL || 'http://localhost:3000';
return `${SERVER_BASE}${filePath}`;
}
if (filePath.includes('/uploads/')) {
const SERVER_BASE = import.meta.env.VITE_SERVER_BASE_URL || 'http://localhost:3000';
return `${SERVER_BASE}${filePath}`;
}
const SERVER_BASE = import.meta.env.VITE_SERVER_BASE_URL || 'http://localhost:3000';
2026-02-28 16:41:39 +08:00
return `${SERVER_BASE}/uploads/${filePath}`;
};
2026-02-28 16:41:39 +08:00
const loading = ref(false);
const course = ref<any>({
name: '',
2026-02-28 16:41:39 +08:00
status: 'PUBLISHED',
version: '1.0',
2026-02-28 16:41:39 +08:00
duration: 25,
gradeTags: '[]',
domainTags: '[]',
coreContent: '',
pictureBookName: '',
theme: null,
authorized: true,
// 课程介绍
introSummary: '',
introHighlights: '',
introGoals: '',
introSchedule: '',
introKeyPoints: '',
introMethods: '',
introEvaluation: '',
introNotes: '',
// 排课参考
scheduleRefData: '',
// 环创建设
environmentConstruction: '',
// 统计
usageCount: 0,
teacherCount: 0,
avgRating: 0,
2026-02-28 16:41:39 +08:00
createdAt: null,
updatedAt: null,
publishedAt: null,
});
2026-02-28 16:41:39 +08:00
const courseLessons = ref<any[]>([]);
const teacherFeedbacks = ref<any[]>([]);
const activeIntroTab = ref('summary');
// 图片预览
const imagePreviewVisible = ref(false);
const previewImageUrl = ref('');
// 文件预览
const previewModalVisible = ref(false);
const previewFileUrl = ref('');
const previewFileName = ref('');
// 年级
const grades = computed(() => {
if (!course.value.gradeTags) return [];
try {
const tags = JSON.parse(course.value.gradeTags);
return Array.isArray(tags) ? tags : [];
} catch {
// 可能已经是数组
return Array.isArray(course.value.gradeTags) ? course.value.gradeTags : [];
}
2026-02-28 16:41:39 +08:00
});
// 领域标签(核心发展目标,翻译为中文)
2026-02-28 16:41:39 +08:00
const domainTags = computed(() => {
if (!course.value.domainTags) return [];
try {
const tags = JSON.parse(course.value.domainTags);
const arr = Array.isArray(tags) ? tags : [];
return translateDomainTags(arr);
2026-02-28 16:41:39 +08:00
} catch {
return Array.isArray(course.value.domainTags) ? translateDomainTags(course.value.domainTags) : [];
2026-02-28 16:41:39 +08:00
}
});
2026-02-28 16:41:39 +08:00
// 是否有课程介绍内容
const hasIntroContent = computed(() => {
return course.value.introSummary || course.value.introHighlights ||
course.value.introGoals || course.value.introSchedule ||
course.value.introKeyPoints || course.value.introMethods ||
course.value.introEvaluation || course.value.introNotes;
});
2026-02-28 16:41:39 +08:00
// 课程介绍填写数量
const introCompletionCount = computed(() => {
let count = 0;
if (course.value.introSummary) count++;
if (course.value.introHighlights) count++;
if (course.value.introGoals) count++;
if (course.value.introSchedule) count++;
if (course.value.introKeyPoints) count++;
if (course.value.introMethods) count++;
if (course.value.introEvaluation) count++;
if (course.value.introNotes) count++;
return count;
});
2026-02-28 16:41:39 +08:00
// 排课参考数据
const scheduleRef = computed(() => {
if (!course.value.scheduleRefData) return [];
// 如果已经是数组,直接返回
if (Array.isArray(course.value.scheduleRefData)) {
return course.value.scheduleRefData;
}
// 如果是字符串,尝试解析
try {
return JSON.parse(course.value.scheduleRefData);
} catch {
return [];
}
});
// 排课表格列定义
const scheduleColumns = [
{ title: '时间', dataIndex: 'dayOfWeek', key: 'dayOfWeek', width: 80 },
{ title: '课程类型', dataIndex: 'lessonType', key: 'lessonType', width: 100 },
{ title: '课程名称', dataIndex: 'lessonName', key: 'lessonName' },
{ title: '区域活动', dataIndex: 'activity', key: 'activity' },
{ title: '备注', dataIndex: 'note', key: 'note' },
];
// 汇总所有资源
const allVideos = computed(() => {
const videos: any[] = [];
// 从课程中获取
courseLessons.value.forEach(lesson => {
if (lesson.videoPath) {
videos.push({ path: lesson.videoPath, name: lesson.videoName || '视频', source: lesson.name });
}
});
2026-02-28 16:41:39 +08:00
// 从旧字段获取
if (course.value.videoPaths) {
try {
const paths = typeof course.value.videoPaths === 'string'
? JSON.parse(course.value.videoPaths) : course.value.videoPaths;
if (Array.isArray(paths)) {
paths.forEach((item: any) => {
videos.push({ path: item.path, name: item.name || '视频', source: '资源库' });
});
}
} catch {}
}
return videos;
});
2026-02-28 16:41:39 +08:00
const allAudios = computed(() => {
const audios: any[] = [];
if (course.value.audioPaths) {
try {
const paths = typeof course.value.audioPaths === 'string'
? JSON.parse(course.value.audioPaths) : course.value.audioPaths;
if (Array.isArray(paths)) {
paths.forEach((item: any) => {
audios.push({ path: item.path, name: item.name || '音频', source: '资源库' });
});
}
} catch {}
}
return audios;
});
2026-02-28 16:41:39 +08:00
const allDocuments = computed(() => {
const docs: any[] = [];
// 从课程中获取
courseLessons.value.forEach(lesson => {
if (lesson.pptPath) {
docs.push({ path: lesson.pptPath, name: lesson.pptName || '课件', type: 'ppt', source: lesson.name });
}
if (lesson.pdfPath) {
docs.push({ path: lesson.pdfPath, name: lesson.pdfName || '电子绘本', type: 'pdf', source: lesson.name });
}
});
// 从旧字段获取
if (course.value.pptPath) {
docs.push({ path: course.value.pptPath, name: course.value.pptName || '教学PPT', type: 'ppt', source: '课程' });
}
if (course.value.ebookPaths) {
try {
const paths = typeof course.value.ebookPaths === 'string'
? JSON.parse(course.value.ebookPaths) : course.value.ebookPaths;
if (Array.isArray(paths)) {
paths.forEach((item: any) => {
docs.push({ path: item.path, name: item.name || '电子绘本', type: 'pdf', source: '资源库' });
});
}
} catch {}
}
return docs;
});
2026-02-28 16:41:39 +08:00
const allImages = computed(() => {
const images: any[] = [];
if (course.value.posterPaths) {
try {
2026-02-28 16:41:39 +08:00
const paths = typeof course.value.posterPaths === 'string'
? JSON.parse(course.value.posterPaths) : course.value.posterPaths;
if (Array.isArray(paths)) {
paths.forEach((item: any) => {
images.push({ path: item.path, name: item.name || '挂图' });
});
}
} catch {}
}
2026-02-28 16:41:39 +08:00
return images;
});
const hasAnyResources = computed(() => {
return allVideos.value.length > 0 ||
allAudios.value.length > 0 ||
allDocuments.value.length > 0 ||
allImages.value.length > 0;
});
const totalResourcesCount = computed(() => {
return allVideos.value.length + allAudios.value.length + allDocuments.value.length + allImages.value.length;
});
2026-02-28 16:41:39 +08:00
// 检查课程是否有资源
const hasLessonResources = (lesson: any) => {
return lesson.videoPath || lesson.pptPath || lesson.pdfPath;
};
2026-02-28 16:41:39 +08:00
// 获取年级颜色
const getGradeColor = (grade: string) => {
const colors: Record<string, string> = {
'小班': 'green',
'中班': 'blue',
'大班': 'orange',
};
return colors[grade] || 'default';
};
2026-02-28 16:41:39 +08:00
// 获取课程类型颜色
const getLessonTypeColor = (type: string) => {
const colors: Record<string, string> = {
'INTRO': 'cyan',
'COLLECTIVE': 'green',
'DOMAIN_HEALTH': 'red',
'DOMAIN_LANGUAGE': 'orange',
'DOMAIN_SOCIAL': 'purple',
'DOMAIN_SCIENCE': 'geekblue',
'DOMAIN_ART': 'magenta',
};
return colors[type] || 'default';
};
2026-02-28 16:41:39 +08:00
const getLessonTypeBgColor = (type: string) => {
const colors: Record<string, string> = {
'INTRO': '#13c2c2',
'COLLECTIVE': '#52c41a',
'DOMAIN_HEALTH': '#f5222d',
'DOMAIN_LANGUAGE': '#fa8c16',
'DOMAIN_SOCIAL': '#722ed1',
'DOMAIN_SCIENCE': '#2f54eb',
'DOMAIN_ART': '#eb2f96',
};
return colors[type] || '#1890ff';
};
2026-02-28 16:41:39 +08:00
// 翻译课程类型
const translateLessonType = (type: string) => {
const map: Record<string, string> = {
'INTRO': '导入课',
'COLLECTIVE': '集体课',
'DOMAIN_HEALTH': '健康领域',
'DOMAIN_LANGUAGE': '语言领域',
'DOMAIN_SOCIAL': '社会领域',
'DOMAIN_SCIENCE': '科学领域',
'DOMAIN_ART': '艺术领域',
};
return map[type] || type;
};
2026-02-28 16:41:39 +08:00
// 图片预览
const previewImage = (url: string) => {
previewImageUrl.value = url;
imagePreviewVisible.value = true;
};
2026-02-28 16:41:39 +08:00
// 文件预览
const previewFile = (filePath: string, fileName: string) => {
if (!filePath) {
message.warning('该资源暂无可预览的文件');
return;
}
2026-02-28 16:41:39 +08:00
previewFileUrl.value = getFileUrl(filePath);
previewFileName.value = fileName || '资源预览';
previewModalVisible.value = true;
};
2026-02-28 16:41:39 +08:00
const viewStats = () => {
router.push(`/school/courses/${route.params.id}/stats`);
};
2026-02-28 16:41:39 +08:00
const formatDate = (dateStr: string) => {
if (!dateStr) return '-';
const date = new Date(dateStr);
return date.toLocaleString('zh-CN');
};
2026-02-28 16:41:39 +08:00
onMounted(async () => {
await fetchCourseDetail();
});
2026-02-28 16:41:39 +08:00
const fetchCourseDetail = async () => {
loading.value = true;
try {
const courseId = +route.params.id;
const data = await schoolApi.getSchoolCourse(courseId);
course.value = data;
// 获取课程列表
if (data.courseLessons && data.courseLessons.length > 0) {
courseLessons.value = data.courseLessons.map((lesson: any) => ({
...lesson,
steps: lesson.steps || [],
}));
}
// 兼容旧数据:如果有 scripts 字段,转换为课程格式
if (data.scripts && data.scripts.length > 0 && courseLessons.value.length === 0) {
// 创建一个集体课作为默认
courseLessons.value.push({
id: 'legacy-collective',
lessonType: 'COLLECTIVE',
name: course.value.name + '-集体课',
duration: course.value.duration || 25,
objectives: '',
preparation: '',
steps: data.scripts.map((script: any, index: number) => ({
id: script.id || `step-${index}`,
name: script.stepName,
duration: script.duration,
objective: script.objective,
content: script.teacherScript,
})),
videoPath: '',
videoName: '',
pptPath: data.pptPath || '',
pptName: data.pptName || '',
pdfPath: '',
pdfName: '',
});
}
// 设置第一个有内容的tab为活动
if (course.value.introSummary) activeIntroTab.value = 'summary';
else if (course.value.introHighlights) activeIntroTab.value = 'highlights';
else if (course.value.introGoals) activeIntroTab.value = 'goals';
else if (course.value.introSchedule) activeIntroTab.value = 'schedule';
else if (course.value.introKeyPoints) activeIntroTab.value = 'keyPoints';
else if (course.value.introMethods) activeIntroTab.value = 'methods';
else if (course.value.introEvaluation) activeIntroTab.value = 'evaluation';
else if (course.value.introNotes) activeIntroTab.value = 'notes';
// 获取教师反馈(如果有)
if (data.feedbacks) {
teacherFeedbacks.value = data.feedbacks;
}
} catch (error) {
console.error('获取课程详情失败:', error);
message.error('获取课程详情失败');
} finally {
loading.value = false;
}
};
</script>
2026-02-28 16:41:39 +08:00
<style scoped lang="scss">
.course-detail-view {
padding: 24px;
min-height: 100vh;
background: linear-gradient(135deg, #F0FFF4 0%, #FFFFFF 50%, #F0FDF4 100%);
}
2026-02-28 16:41:39 +08:00
.detail-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 24px;
background: white;
2026-02-28 16:41:39 +08:00
border-bottom: 1px solid #f0f0f0;
position: sticky;
top: 0;
z-index: 100;
2026-02-28 16:41:39 +08:00
.header-left {
display: flex;
align-items: center;
gap: 12px;
2026-02-28 16:41:39 +08:00
.course-title {
display: flex;
align-items: center;
2026-02-28 16:41:39 +08:00
h2 {
margin: 0;
font-size: 18px;
font-weight: 600;
}
}
}
2026-02-28 16:41:39 +08:00
.header-actions {
display: flex;
gap: 8px;
}
}
.detail-content {
2026-02-28 16:41:39 +08:00
padding: 24px;
max-width: 1400px;
margin: 0 auto;
}
.cover-section {
2026-02-28 16:41:39 +08:00
margin-bottom: 24px;
text-align: center;
2026-02-28 16:41:39 +08:00
.cover-image {
max-width: 100%;
max-height: 400px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
object-fit: cover;
}
}
.info-grid {
display: grid;
2026-02-28 16:41:39 +08:00
grid-template-columns: 2fr 1fr 1fr;
gap: 16px;
margin-bottom: 24px;
2026-02-28 16:41:39 +08:00
@media (max-width: 1200px) {
grid-template-columns: 1fr 1fr;
}
2026-02-28 16:41:39 +08:00
@media (max-width: 768px) {
grid-template-columns: 1fr;
}
}
2026-02-28 16:41:39 +08:00
.info-card {
background: white;
border-radius: 12px;
overflow: hidden;
2026-02-28 16:41:39 +08:00
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
2026-02-28 16:41:39 +08:00
.card-header {
padding: 16px 20px;
border-bottom: 1px solid #f0f0f0;
background: #fafafa;
.card-title {
font-size: 15px;
font-weight: 600;
color: #333;
display: flex;
align-items: center;
gap: 8px;
}
}
2026-02-28 16:41:39 +08:00
.card-body {
padding: 16px 20px;
}
}
2026-02-28 16:41:39 +08:00
.info-row {
display: flex;
2026-02-28 16:41:39 +08:00
padding: 8px 0;
border-bottom: 1px dashed #f0f0f0;
2026-02-28 16:41:39 +08:00
&:last-child {
border-bottom: none;
}
2026-02-28 16:41:39 +08:00
.info-label {
width: 100px;
flex-shrink: 0;
color: #666;
font-size: 13px;
}
2026-02-28 16:41:39 +08:00
.info-value {
flex: 1;
color: #333;
font-size: 13px;
}
}
2026-02-28 16:41:39 +08:00
.empty-text {
color: #999;
}
2026-02-28 16:41:39 +08:00
.stats-card {
.stats-body {
display: flex;
justify-content: space-around;
padding: 24px 16px;
}
2026-02-28 16:41:39 +08:00
.stat-item {
text-align: center;
2026-02-28 16:41:39 +08:00
.stat-value {
font-size: 28px;
font-weight: 600;
color: #43e97b;
line-height: 1.2;
}
2026-02-28 16:41:39 +08:00
.stat-label {
font-size: 13px;
color: #666;
margin-top: 4px;
}
}
}
2026-02-28 16:41:39 +08:00
.version-card {
.version-item {
display: flex;
justify-content: space-between;
padding: 6px 0;
font-size: 13px;
2026-02-28 16:41:39 +08:00
.version-label {
color: #666;
}
2026-02-28 16:41:39 +08:00
.version-value {
color: #333;
}
}
}
2026-02-28 16:41:39 +08:00
.section-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
margin-bottom: 24px;
.section-header {
padding: 16px 24px;
border-bottom: 1px solid #f0f0f0;
display: flex;
justify-content: space-between;
align-items: center;
.section-title {
font-size: 16px;
font-weight: 600;
color: #333;
display: flex;
align-items: center;
gap: 8px;
}
2026-02-28 16:41:39 +08:00
.completion-hint {
font-size: 12px;
color: #999;
}
}
2026-02-28 16:41:39 +08:00
.section-body {
padding: 20px 24px;
}
}
2026-02-28 16:41:39 +08:00
.intro-content {
line-height: 1.8;
color: #333;
white-space: pre-wrap;
font-size: 14px;
}
2026-02-28 16:41:39 +08:00
.lesson-cards {
display: grid;
gap: 16px;
}
2026-02-28 16:41:39 +08:00
.lesson-card {
border: 1px solid #e8e8e8;
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
2026-02-28 16:41:39 +08:00
&:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
2026-02-28 16:41:39 +08:00
.lesson-header {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 20px;
background: #fafafa;
border-bottom: 1px solid #f0f0f0;
.lesson-type-badge {
padding: 4px 12px;
border-radius: 20px;
color: white;
font-size: 12px;
font-weight: 500;
}
2026-02-28 16:41:39 +08:00
.lesson-name {
flex: 1;
font-weight: 600;
font-size: 15px;
}
2026-02-28 16:41:39 +08:00
.lesson-duration {
color: #666;
font-size: 13px;
}
}
2026-02-28 16:41:39 +08:00
.lesson-body {
padding: 16px 20px;
}
2026-02-28 16:41:39 +08:00
.lesson-section {
margin-bottom: 16px;
2026-02-28 16:41:39 +08:00
&:last-child {
margin-bottom: 0;
}
2026-02-28 16:41:39 +08:00
.lesson-section-title {
font-size: 13px;
font-weight: 600;
color: #666;
margin-bottom: 8px;
padding-left: 8px;
border-left: 3px solid #43e97b;
}
2026-02-28 16:41:39 +08:00
.lesson-section-content {
font-size: 13px;
color: #333;
line-height: 1.6;
white-space: pre-wrap;
}
}
}
2026-02-28 16:41:39 +08:00
.resource-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 8px;
2026-02-28 16:41:39 +08:00
@media (max-width: 768px) {
grid-template-columns: 1fr;
}
2026-02-28 16:41:39 +08:00
.resource-item {
display: flex;
align-items: center;
padding: 10px 12px;
background: #f9f9f9;
border-radius: 8px;
cursor: pointer;
transition: all 0.2s ease;
2026-02-28 16:41:39 +08:00
&:hover {
background: #F0FFF4;
2026-02-28 16:41:39 +08:00
.resource-action {
opacity: 1;
}
}
2026-02-28 16:41:39 +08:00
.resource-icon {
font-size: 18px;
margin-right: 8px;
2026-02-28 16:41:39 +08:00
&.video { color: #722ed1; }
&.ppt { color: #fa8c16; }
&.pdf { color: #f5222d; }
}
2026-02-28 16:41:39 +08:00
.resource-name {
flex: 1;
font-size: 13px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
2026-02-28 16:41:39 +08:00
.resource-action {
color: #43e97b;
opacity: 0;
transition: opacity 0.2s ease;
}
}
}
2026-02-28 16:41:39 +08:00
.steps-timeline {
.step-item {
display: flex;
gap: 12px;
padding: 12px 0;
border-bottom: 1px dashed #f0f0f0;
2026-02-28 16:41:39 +08:00
&:last-child {
border-bottom: none;
}
2026-02-28 16:41:39 +08:00
.step-dot {
width: 24px;
height: 24px;
border-radius: 50%;
background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: 600;
flex-shrink: 0;
}
2026-02-28 16:41:39 +08:00
.step-content {
flex: 1;
2026-02-28 16:41:39 +08:00
.step-name {
font-weight: 500;
margin-bottom: 4px;
}
2026-02-28 16:41:39 +08:00
.step-duration {
display: inline-block;
font-size: 12px;
color: #999;
margin-left: 8px;
}
2026-02-28 16:41:39 +08:00
.step-info {
font-size: 12px;
color: #666;
margin-top: 4px;
line-height: 1.5;
}
}
}
}
2026-02-28 16:41:39 +08:00
.resources-grid {
display: grid;
gap: 20px;
.resource-group {
.resource-group-title {
font-size: 14px;
font-weight: 600;
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 8px;
}
2026-02-28 16:41:39 +08:00
.resource-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 8px;
}
2026-02-28 16:41:39 +08:00
.resource-item-card {
display: flex;
align-items: center;
padding: 10px 14px;
background: #fafafa;
border-radius: 8px;
cursor: pointer;
transition: all 0.2s ease;
2026-02-28 16:41:39 +08:00
&:hover {
background: #F0FFF4;
2026-02-28 16:41:39 +08:00
.item-action {
opacity: 1;
}
}
2026-02-28 16:41:39 +08:00
.item-icon {
font-size: 18px;
margin-right: 10px;
}
2026-02-28 16:41:39 +08:00
.item-name {
flex: 1;
font-size: 13px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
2026-02-28 16:41:39 +08:00
.item-action {
color: #43e97b;
opacity: 0;
transition: opacity 0.2s ease;
}
}
2026-02-28 16:41:39 +08:00
.image-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
gap: 8px;
.image-thumbnail {
width: 100%;
height: 100px;
object-fit: cover;
border-radius: 8px;
cursor: pointer;
transition: transform 0.2s ease;
&:hover {
transform: scale(1.05);
}
}
}
}
}
2026-02-28 16:41:39 +08:00
.feedback-list {
.feedback-item {
padding: 12px;
background: #fafafa;
border-radius: 8px;
margin-bottom: 8px;
2026-02-28 16:41:39 +08:00
&:last-child {
margin-bottom: 0;
}
2026-02-28 16:41:39 +08:00
.feedback-header {
display: flex;
align-items: center;
margin-bottom: 8px;
2026-02-28 16:41:39 +08:00
.feedback-teacher {
font-weight: 500;
color: #333;
}
2026-02-28 16:41:39 +08:00
.feedback-date {
font-size: 12px;
color: #999;
margin-left: 12px;
}
}
2026-02-28 16:41:39 +08:00
.feedback-content {
font-size: 13px;
color: #666;
line-height: 1.6;
}
}
}
</style>