人生啊人生 3 tháng trước cách đây
mục cha
commit
6ea884bc51

+ 6 - 0
user_web/src/router/adminRoute.ts

@@ -28,6 +28,12 @@ const adminRoute = {
             component: () => import('../view/admin/ManageClass.vue'),
             meta: { title: '后台管理-班级管理' },
         },
+        {
+            path: '/admin/manageStudy',
+            name: 'adminManageStudy',
+            component: () => import('../view/admin/ManageStudy.vue'),
+            meta: { title: '后台管理-学习管理' },
+        },
         {
             path: '/admin/manageCourse',
             name: 'adminManageCourse',

+ 40 - 0
user_web/src/view/admin/ManageStudy.vue

@@ -0,0 +1,40 @@
+<script setup>
+import { computed, onMounted, onUnmounted, watch, ref } from "vue";
+import { useRouter } from 'vue-router';
+const router = useRouter();
+
+</script>
+
+<template>
+    <div class="ManageStudy">
+        学习管理
+    </div>
+</template>
+
+<style lang="scss" scoped>
+@use './css/commonsScrollbar.scss';
+
+.ManageStudy * {
+    -moz-user-select: none;
+    -webkit-user-select: none;
+    -ms-user-select: none;
+    -khtml-user-select: none;
+
+    user-select: none;
+    box-sizing:border-box;
+    -moz-box-sizing:border-box; /* Firefox */
+    -webkit-box-sizing:border-box; /* Safari */
+}
+
+.ManageStudy {
+
+    position: relative;
+    z-index: 0;
+    width: 100%;
+    height: 100%;
+    top: 0px;
+    left: 0px;
+    background-color: #ffffff;
+    
+}
+</style>

+ 4 - 0
user_web/src/view/admin/components/Menu/MenuLeftTwo.vue

@@ -157,6 +157,10 @@ let menuList = ref([
                 name: '课程管理',
                 url: 'admin/manageCourse',
             },
+            {
+                name: '学习管理',
+                url: 'admin/manageStudy',
+            },
         ],
     },