|
@@ -66,6 +66,10 @@ import tcNotice from '@/components/pages/tencent/notice'
|
|
|
import studioCourse from '@/components/pages/studio/course'
|
|
|
import studioAddCourse from '@/components/pages/studio/addCourse'
|
|
|
import studioCourseProgress from '@/components/pages/studio/courseProgress'
|
|
|
+import studioEvaluate from '@/components/pages/studio/studioEvaluate'
|
|
|
+import studioEvaBasicData from '@/components/pages/components/studioEvaBasicData'
|
|
|
+import actLineChat from '@/components/pages/components/actLineChat'
|
|
|
+import actTypeTable from '@/components/pages/components/actTypeTable'
|
|
|
|
|
|
Vue.use(Router).use(ElementUI)
|
|
|
|
|
@@ -562,5 +566,37 @@ export default new Router({
|
|
|
requireAuth: '' // 不需要鉴权
|
|
|
}
|
|
|
},
|
|
|
+ {
|
|
|
+ path: '/studioEvaluate',
|
|
|
+ name: 'studioEvaluate',
|
|
|
+ component: studioEvaluate,
|
|
|
+ meta: {
|
|
|
+ requireAuth: '' // 不需要鉴权
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/studioEvaBasicData',
|
|
|
+ name: 'studioEvaBasicData',
|
|
|
+ component: studioEvaBasicData,
|
|
|
+ meta: {
|
|
|
+ requireAuth: '' // 不需要鉴权
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/actLineChat',
|
|
|
+ name: 'actLineChat',
|
|
|
+ component: actLineChat,
|
|
|
+ meta: {
|
|
|
+ requireAuth: '' // 不需要鉴权
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/actTypeTable',
|
|
|
+ name: 'actTypeTable',
|
|
|
+ component: actTypeTable,
|
|
|
+ meta: {
|
|
|
+ requireAuth: '' // 不需要鉴权
|
|
|
+ }
|
|
|
+ },
|
|
|
]
|
|
|
})
|