|
@@ -70,6 +70,16 @@ import studioEvaluate from '@/components/pages/studio/studioEvaluate'
|
|
|
import studioEvaBasicData from '@/components/pages/studio/components/studioEvaBasicData'
|
|
|
import actLineChat from '@/components/pages/studio/components/actLineChat'
|
|
|
import actTypeTable from '@/components/pages/studio/components/actTypeTable'
|
|
|
+import worksReport from '@/components/pages/worksReport'
|
|
|
+import myReport from '@/components/pages/myReport/myReport'
|
|
|
+import mrBasicData from '@/components/pages/studio/components/mrBasicData'
|
|
|
+import mrOverPer from '@/components/pages/studio/components/mrOverPer'
|
|
|
+import myCourseReport from '@/components/pages/studio/components/myCourseReport'
|
|
|
+import courseEvaScore from '@/components/pages/studio/components/courseEvaScore'
|
|
|
+import mrLearnStatus from '@/components/pages/studio/components/mrLearnStatus'
|
|
|
+import courseTypeAna from '@/components/pages/studio/components/courseTypeAna'
|
|
|
+import toolTypeAna from '@/components/pages/studio/components/toolTypeAna'
|
|
|
+import mrEva from '@/components/pages/studio/components/mrEva'
|
|
|
|
|
|
Vue.use(Router).use(ElementUI)
|
|
|
|
|
@@ -598,5 +608,85 @@ export default new Router({
|
|
|
requireAuth: '' // 不需要鉴权
|
|
|
}
|
|
|
},
|
|
|
+ {
|
|
|
+ path: '/worksReport',
|
|
|
+ name: 'worksReport',
|
|
|
+ component: worksReport,
|
|
|
+ meta: {
|
|
|
+ requireAuth: '' // 不需要鉴权
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/myReport',
|
|
|
+ name: 'myReport',
|
|
|
+ component: myReport,
|
|
|
+ meta: {
|
|
|
+ requireAuth: '' // 不需要鉴权
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/mrBasicData',
|
|
|
+ name: 'mrBasicData',
|
|
|
+ component: mrBasicData,
|
|
|
+ meta: {
|
|
|
+ requireAuth: '' // 不需要鉴权
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/mrOverPer',
|
|
|
+ name: 'mrOverPer',
|
|
|
+ component: mrOverPer,
|
|
|
+ meta: {
|
|
|
+ requireAuth: '' // 不需要鉴权
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/myCourseReport',
|
|
|
+ name: 'myCourseReport',
|
|
|
+ component: myCourseReport,
|
|
|
+ meta: {
|
|
|
+ requireAuth: '' // 不需要鉴权
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/courseEvaScore',
|
|
|
+ name: 'courseEvaScore',
|
|
|
+ component: courseEvaScore,
|
|
|
+ meta: {
|
|
|
+ requireAuth: '' // 不需要鉴权
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/mrLearnStatus',
|
|
|
+ name: 'mrLearnStatus',
|
|
|
+ component: mrLearnStatus,
|
|
|
+ meta: {
|
|
|
+ requireAuth: '' // 不需要鉴权
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/courseTypeAna',
|
|
|
+ name: 'courseTypeAna',
|
|
|
+ component: courseTypeAna,
|
|
|
+ meta: {
|
|
|
+ requireAuth: '' // 不需要鉴权
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/toolTypeAna',
|
|
|
+ name: 'toolTypeAna',
|
|
|
+ component: toolTypeAna,
|
|
|
+ meta: {
|
|
|
+ requireAuth: '' // 不需要鉴权
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/mrEva',
|
|
|
+ name: 'mrEva',
|
|
|
+ component: mrEva,
|
|
|
+ meta: {
|
|
|
+ requireAuth: '' // 不需要鉴权
|
|
|
+ }
|
|
|
+ },
|
|
|
]
|
|
|
})
|