ManageStudy.vue 976 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <script setup>
  2. import CourseMng from '../../components/admin/CourseMng.vue';
  3. import { computed, onMounted, onUnmounted, watch, ref } from "vue";
  4. import { useRouter } from 'vue-router';
  5. const router = useRouter();
  6. </script>
  7. <template>
  8. <div class="ManageStudy">
  9. <!-- 学习管理 -->
  10. <CourseMng></CourseMng>
  11. </div>
  12. </template>
  13. <style lang="scss" scoped>
  14. @use './css/commonsScrollbar.scss';
  15. .ManageStudy * {
  16. // -moz-user-select: none;
  17. // -webkit-user-select: none;
  18. // -ms-user-select: none;
  19. // -khtml-user-select: none;
  20. // user-select: none;
  21. box-sizing:border-box;
  22. -moz-box-sizing:border-box; /* Firefox */
  23. -webkit-box-sizing:border-box; /* Safari */
  24. }
  25. .ManageStudy {
  26. position: relative;
  27. z-index: 0;
  28. width: 100%;
  29. height: 100%;
  30. top: 0px;
  31. left: 0px;
  32. background-color: #ffffff;
  33. :deep(.course-panel) {
  34. width: 100%;
  35. margin: 0px;
  36. padding: 0px;
  37. }
  38. }
  39. </style>