fix(teacher): 修复 CourseBasicInfo.vue 缺少 getThemeTagStyle 导入的错误

- 添加 getThemeTagStyle 函数从 @/utils/tagMaps 的导入
- 修复主题标签样式计算时函数未定义的错误

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
En 2026-03-25 09:52:14 +08:00
parent 607b0896bd
commit 3bd5cdfef5

View File

@ -68,7 +68,7 @@ import { computed } from 'vue';
import {
InfoCircleOutlined, PictureOutlined, BarChartOutlined,
} from '@ant-design/icons-vue';
import { translateGradeTags } from '@/utils/tagMaps';
import { translateGradeTags, getThemeTagStyle } from '@/utils/tagMaps';
const props = defineProps<{
course: any;