TheSubMenu.vue 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <script setup lang="jsx">
  2. import { storeToRefs } from 'pinia';
  3. import { NInfiniteScroll } from 'naive-ui';
  4. import { useAppStore } from '@/stores/modules/appStore';
  5. import SvgIcon from '@/components/SvgIcon';
  6. defineProps({
  7. title: {
  8. type: String,
  9. default: ''
  10. },
  11. loading: {
  12. type: Boolean,
  13. default: false
  14. }
  15. })
  16. const emits = defineEmits(['scrollToLower']);
  17. const appStore = useAppStore();
  18. const { subMenuCollapse } = storeToRefs(appStore);
  19. const changeCollapse = () => appStore.toggleSubMenuCollapse();
  20. const handleLoadMore = () => emits('scrollToLower');
  21. const scrollToTop = () => {
  22. document.querySelector('.scroll_container').parentNode.scrollTo({
  23. top: 0,
  24. left: 0
  25. })
  26. };
  27. defineExpose({ scrollToTop });
  28. </script>
  29. <template>
  30. <div class="sub-menu-container w-[190px] h-full pt-[18px]" v-show="subMenuCollapse" @click="handleLoad">
  31. <div class="flex items-center justify-between w-full px-[11px] pb-[22px]">
  32. <p class="text-[#1A2029] text-[14px] font-bold">{{ title }}</p>
  33. <SvgIcon name="tool-arrow-right" size="20" class="cursor-pointer" @click="changeCollapse"></SvgIcon>
  34. </div>
  35. <div class="w-full">
  36. <slot name="top" />
  37. </div>
  38. <div class="sub-menu-main w-full h-full" >
  39. <NInfiniteScroll passive class="h-full" :distance="10" @load="handleLoadMore" content-class="scroll_container">
  40. <slot></slot>
  41. <div class="footer-loading w-full h-[50px]" v-show="loading">
  42. 加载更多
  43. </div>
  44. </NInfiniteScroll>
  45. </div>
  46. </div>
  47. </template>
  48. <style scoped lang="scss">
  49. .sub-menu-container {
  50. @include flex(y, start, start);
  51. border-left: 1px solid #DBE6EE;
  52. .sub-menu-main {
  53. position: relative;
  54. height: calc(100% - 100px);
  55. width: 100%;
  56. }
  57. .footer-loading {
  58. position: absolute;
  59. bottom: 0px;
  60. @include flex(x, center, center);
  61. background: linear-gradient(180deg, rgba(229, 235, 247, 0.2) 0%, #E5EBF7 15.45%, #E5EBF7 100%);
  62. font-size: 12px;
  63. color: #666;
  64. }
  65. }
  66. </style>