|
|
|
@ -286,6 +286,12 @@ const sidebarStyle = computed(() => {
|
|
|
|
});
|
|
|
|
});
|
|
|
|
const studentCourseNav = [
|
|
|
|
const studentCourseNav = [
|
|
|
|
{ title: "AI智能助手", path: "/assistant/index", activePrefix: "/assistant" },
|
|
|
|
{ title: "AI智能助手", path: "/assistant/index", activePrefix: "/assistant" },
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
title: "综合实训",
|
|
|
|
|
|
|
|
children: [
|
|
|
|
|
|
|
|
{ title: "综合案例实训", path: "/comprehensive/index" },
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
title: "互联网产品开发基础",
|
|
|
|
title: "互联网产品开发基础",
|
|
|
|
children: [
|
|
|
|
children: [
|
|
|
|
@ -351,6 +357,7 @@ const teacherManageNav = [
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
];
|
|
|
|
const trainingTaskKeyByPath = {
|
|
|
|
const trainingTaskKeyByPath = {
|
|
|
|
|
|
|
|
"/comprehensive/index": "comprehensive-case-training",
|
|
|
|
"/foundation/new-product-survey": "new-product-survey",
|
|
|
|
"/foundation/new-product-survey": "new-product-survey",
|
|
|
|
"/foundation/product-development-factors": "product-development-factors",
|
|
|
|
"/foundation/product-development-factors": "product-development-factors",
|
|
|
|
"/foundation/product-development-process": "product-development-process",
|
|
|
|
"/foundation/product-development-process": "product-development-process",
|
|
|
|
@ -382,6 +389,7 @@ const currentCourseNav = computed(() => (isTeacherRole.value
|
|
|
|
: filterStudentCourseNavigation(studentCourseNav, publishedTaskKeys.value)));
|
|
|
|
: filterStudentCourseNavigation(studentCourseNav, publishedTaskKeys.value)));
|
|
|
|
const studentIconByPath = {
|
|
|
|
const studentIconByPath = {
|
|
|
|
"/assistant/index": "MagicStick",
|
|
|
|
"/assistant/index": "MagicStick",
|
|
|
|
|
|
|
|
"/comprehensive/index": "School",
|
|
|
|
"/foundation/new-product-survey": "Search",
|
|
|
|
"/foundation/new-product-survey": "Search",
|
|
|
|
"/foundation/product-development-factors": "SetUp",
|
|
|
|
"/foundation/product-development-factors": "SetUp",
|
|
|
|
"/foundation/product-development-process": "Guide",
|
|
|
|
"/foundation/product-development-process": "Guide",
|
|
|
|
|