| | |
| | | path: '/grade', |
| | | component: () => import('@/views/grade/index.vue'), |
| | | }, |
| | | |
| | | // 教学资源 |
| | | { |
| | | path: '/folder', |
| | | component: () => import('@/views/folder/index.vue'), |
| | | }, |
| | | ]; |
| | | |
| | | const router = createRouter({ |
New file |
| | |
| | | <template> |
| | | <div class="folder-container w-screen h-screen bg-slate-50 flex flex-col items-center"> |
| | | <NormalHeader class="shrink-0"></NormalHeader> |
| | | |
| | | <div class="list-container container grow relative"> |
| | | <div class="list-content absolute top-0 bottom-0 left-0 right-0 py-4"> |
| | | <div class="list-wrapper w-full h-full"> |
| | | |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </template> |
| | | |
| | | <script setup> |
| | | import { ref } from 'vue'; |
| | | import NormalHeader from '@/components/NormalHeader/index.vue'; |
| | | import { Search } from '@element-plus/icons-vue'; |
| | | |
| | | const loading = ref(false); |
| | | |
| | | </script> |
| | | |
| | | <style lang="scss" scoped> |
| | | |
| | | </style> |
| | |
| | | title: '在线培训', |
| | | iconPath: new URL('@/assets/icons/icon2.png', import.meta.url).href, |
| | | path: '/train' |
| | | } |
| | | }, |
| | | { |
| | | title: '教学资源', |
| | | iconPath: new URL('@/assets/icons/icon1.png', import.meta.url).href, |
| | | path: '/folder' |
| | | }, |
| | | ] |
| | | }, |
| | | { |