TableBox.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <template>
  2. <div class="table-box" v-if="compData" ref="compRef" v-loading="loading">
  3. <div class="top-title-box">
  4. <div class="title">{{ compData.ExcelName }}</div>
  5. <div class="opt-box">
  6. <img
  7. class="icon"
  8. src="~@/assets/img/icons/refresh_blue_new.png"
  9. alt=""
  10. />
  11. <slot name="drag"></slot>
  12. <slot name="delete"></slot>
  13. </div>
  14. </div>
  15. <img class="bg" :src="compData.ExcelImage" alt="" />
  16. </div>
  17. </template>
  18. <script>
  19. export default {
  20. props: {
  21. compData: null
  22. },
  23. data() {
  24. return {
  25. loading: true,
  26. observer:null,
  27. isVisible: false, // 是否可见
  28. }
  29. },
  30. mounted() {
  31. console.log('表格组件挂载', this.compData.ExcelInfoId);
  32. this.createObserver();
  33. },
  34. beforeUnmount() {
  35. if (this.observer) {
  36. this.observer.disconnect();
  37. }
  38. },
  39. methods: {
  40. // 获取表格数据
  41. handleGetTableData(){
  42. setTimeout(() => {
  43. console.log('表格组件加载结束', this.compData.ExcelInfoId);
  44. this.loading=false
  45. }, 2000);
  46. },
  47. // 利用判断是否进入可视区域 来加载数据
  48. // 如果加载过了就不用再加载了
  49. createObserver() {
  50. const options = {
  51. root: null, // 使用浏览器可视区域为根
  52. threshold: 0.1, // 当至少10%的内容进入可视区时触发回调
  53. };
  54. this.observer = new IntersectionObserver(this.handleIntersect, options);
  55. this.observer.observe(this.$refs.compRef); // 监听组件
  56. },
  57. handleIntersect(entries) {
  58. if(this.isVisible) return
  59. entries.forEach(entry => {
  60. // 判断是否在可视范围内
  61. if (entry.isIntersecting) {
  62. this.isVisible = true;
  63. console.log('Component is visible');
  64. // 在这里你可以执行其他操作,比如懒加载数据或图片等
  65. this.handleGetTableData()
  66. }
  67. });
  68. }
  69. },
  70. }
  71. </script>
  72. <style lang="scss" scoped>
  73. .table-box {
  74. width: 100%;
  75. height: 100%;
  76. padding: 20px;
  77. box-sizing: border-box;
  78. .top-title-box {
  79. display: flex;
  80. margin-bottom: 10px;
  81. .title {
  82. font-size: 20px;
  83. font-weight: bold;
  84. flex: 1;
  85. &::before {
  86. content: "";
  87. display: inline-block;
  88. width: 4px;
  89. height: 20px;
  90. background-color: #0052d9;
  91. position: relative;
  92. top: 2px;
  93. margin-right: 5px;
  94. }
  95. }
  96. .opt-box {
  97. flex-shrink: 0;
  98. margin-left: 10px;
  99. .icon {
  100. width: 24px;
  101. height: 24px;
  102. margin-left: 5px;
  103. }
  104. }
  105. }
  106. .bg {
  107. width: 100%;
  108. height: 200px;
  109. }
  110. }
  111. </style>