添加专业力模块

This commit is contained in:
liu
2025-01-13 09:25:47 +08:00
parent 94025b3934
commit d026a86ee5
57 changed files with 52330 additions and 25127 deletions

45
src/utils/constGrown.js Normal file
View File

@@ -0,0 +1,45 @@
import onLineImg from '@/assets/images/leveladd/zai.png'
import faceCourseImg from '@/assets/images/leveladd/mian.png'
import caseImg from '@/assets/images/leveladd/an.png'
import workImg from '@/assets/images/leveladd/zuo.png'
import exaImg from '@/assets/images/leveladd/kao.png'
import AddOnline from "@/components/growthpath/LineAddCourse.vue";
import AddCase from "@/components/growthpath/AddCase.vue";
import AddHomework from "@/components/growthpath/AddHomework.vue";
import AddExa from "@/components/growthpath/AddTest.vue";
import AddFaceClass from "@/components/growthpath/AddFaceClass.vue";
export const TASK_TYPE = {
1: {
name: '在线',
type: 1,
img: onLineImg,
component: AddOnline
},
2: {
name: '面授',
type: 2,
img: faceCourseImg,
component: AddFaceClass
},
3: {
name: '案例',
type: 3,
img: caseImg,
component: AddCase
},
4: {
name: '作业',
type: 4,
img: workImg,
component: AddHomework
},
5: {
name: '考试',
type: 5,
img: exaImg,
component: AddExa
},
}