lsc 3 ヶ月 前
コミット
649523352d

+ 17 - 0
src/components/pages/liyuan/CourseCon.vue

@@ -0,0 +1,17 @@
+<template>
+  <div>
+    <div>课程建设</div>
+    <div>Course Construction</div>
+
+  </div>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+<style>
+
+</style>

+ 17 - 0
src/components/pages/liyuan/aiOffice.vue

@@ -0,0 +1,17 @@
+<template>
+  <div>
+    <div>智慧办公</div>
+    <div>Intelligent Office</div>
+
+  </div>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+<style>
+
+</style>

+ 32 - 0
src/components/pages/liyuan/components/topBar.vue

@@ -0,0 +1,32 @@
+<template>
+  <div class="ly_title">
+    <div class="title">{{ title }}</div>
+    <div class="detail">{{ detail }}</div>
+  </div>
+</template>
+
+<script>
+export default {
+  name: 'lyTitle',
+  props: {
+    title: {
+      type: String,
+    },
+    detail: {
+      type: String,
+    }
+  }
+}
+</script>
+
+<style scoped>
+.ly_title{}
+.ly_title > .title{
+  font-size: 20px;
+  font-weight: bold;
+  margin-bottom: 15px;
+}
+.ly_title > .detail{
+  color: #989da5;
+}
+</style>

+ 17 - 0
src/components/pages/liyuan/schoolSafe.vue

@@ -0,0 +1,17 @@
+<template>
+  <div>
+    <div>平安校园</div>
+    <div>Intelligent Office</div>
+
+  </div>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+<style>
+
+</style>

+ 17 - 0
src/components/pages/liyuan/studentEva.vue

@@ -0,0 +1,17 @@
+<template>
+  <div>
+    <div>学生评价</div>
+    <div>su</div>
+
+  </div>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+<style>
+
+</style>

+ 30 - 0
src/components/pages/liyuan/teacherDevelop.vue

@@ -0,0 +1,30 @@
+<template>
+  <div class="teacherDevelop">
+    <topBar title="教师发展" detail="资料收集 · 智能表单 · 教师管理 · 会议妙计"></topBar>
+
+  </div>
+</template>
+
+<script>
+import topBar from './components/topBar'
+export default {
+  components: {
+    topBar,
+  },
+  data() {
+    return {
+    }
+  },
+}
+</script>
+
+<style scoped>
+.teacherDevelop{
+  width: 100%;
+  height: 100%;
+  padding: 40px;
+  box-sizing: border-box;
+}
+
+
+</style>

+ 53 - 1
src/router/index.js

@@ -145,6 +145,12 @@ import cocoroboffmpeg from '@/components/pages/cocoroboffmpeg'
 import appStore from '@/components/pages/appStore'
 import knowledge from '@/components/pages/knowledge/index'
 import sassPlatform from '@/components/pages/sassPlatform/index'
+import CourseCon from '@/components/pages/liyuan/CourseCon'
+import aiOffice from '@/components/pages/liyuan/aiOffice'
+import schoolSafe from '@/components/pages/liyuan/schoolSafe'
+import lyStudentEva from '@/components/pages/liyuan/studentEva'
+import teacherDevelop from '@/components/pages/liyuan/teacherDevelop'
+
 // 全局修改默认配置,点击空白处不能关闭弹窗
 ElementUI.Dialog.props.closeOnClickModal.default = false
 Vue.use(Router).use(ElementUI)
@@ -1250,6 +1256,52 @@ export default new Router({
             keepAlive: true,
             requireAuth:""//不需要鉴权
           }
-        }
+        },{
+            path:"/CourseCon",
+            name:"CourseCon",
+            component:CourseCon,
+            meta:{
+              keepAlive: true,
+              requireAuth:""//不需要鉴权
+            }
+          },{
+            path:"/aiOffice",
+            name:"aiOffice",
+            component:aiOffice,
+            meta:{
+              keepAlive: true,
+              requireAuth:""//不需要鉴权
+            }
+          },{
+            path:"/schoolSafe",
+            name:"schoolSafe",
+            component:schoolSafe,
+            meta:{
+              keepAlive: true,
+              requireAuth:""//不需要鉴权
+            }
+          },{
+            path:"/lyStudentEva",
+            name:"lyStudentEva",
+            component:lyStudentEva,
+            meta:{
+              keepAlive: true,
+              requireAuth:""//不需要鉴权
+            }
+          },{
+            path:"/teacherDevelop",
+            name:"teacherDevelop",
+            component:teacherDevelop,
+            meta:{
+              keepAlive: true,
+              requireAuth:""//不需要鉴权
+            }
+          }
+
+        
+
+
+
+
     ]
 })