mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-15 05:46:45 +08:00
添加专业力模块
This commit is contained in:
45
src/utils/constGrown.js
Normal file
45
src/utils/constGrown.js
Normal 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
|
||||
},
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user