人生啊人生 3 mesiacov pred
rodič
commit
dc02a18c97

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

@@ -10,6 +10,12 @@ const adminRoute = {
             component: () => import('../view/admin/Index.vue'),
             meta: { title: '后台管理-首页' },
         },
+        {
+            path: '/admin/manageUser',
+            name: 'adminManageUser',
+            component: () => import('../view/admin/ManageUser.vue'),
+            meta: { title: '后台管理-账号管理' },
+        },
     ],
 };
 

+ 1 - 1
user_web/src/view/admin/Index.vue

@@ -34,7 +34,7 @@ const router = useRouter();
     height: 100%;
     top: 0px;
     left: 0px;
-    background-color: #f6f7f9;
+    background-color: #ffffff;
     
 }
 </style>

+ 40 - 0
user_web/src/view/admin/ManageUser.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="ManageUser">
+        账号管理
+    </div>
+</template>
+
+<style lang="scss" scoped>
+@use './css/commonsScrollbar.scss';
+
+.ManageUser * {
+    -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 */
+}
+
+.ManageUser {
+
+    position: relative;
+    z-index: 0;
+    width: 100%;
+    height: 100%;
+    top: 0px;
+    left: 0px;
+    background-color: #ffffff;
+    
+}
+</style>

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

@@ -150,7 +150,7 @@ let menuList = ref([
         list: [
             {
                 name: '账号管理',
-                url: 'teacherPreClassPreviewGeneratePPT',
+                url: 'admin/manageUser',
             },
         ],
     },
@@ -196,7 +196,7 @@ let menuList = ref([
     //     url: 'teacherAiToolbox',
     //     list: [],
     // },
-    
+
 ])
 
 const handleOpen = (key, keyPath) => {
@@ -315,7 +315,7 @@ const menuListEvent = (item, index) => {
         menuViewUpdate()
 
         // 开始跳转路由
-        // router.push('/' + item.url)
+        router.push('/' + item.url)
         
     }
 }