index.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <script setup lang="ts">
  2. import { getList } from "./api";
  3. import error from "./error.png";
  4. import loading from "./loading.png";
  5. import { onMounted, reactive, ref } from "vue";
  6. import "vue-waterfall-plugin-next/dist/style.css";
  7. import backTop from "@/assets/svg/back_top.svg?component";
  8. import { LazyImg, Waterfall } from "vue-waterfall-plugin-next";
  9. const options = reactive({
  10. // 唯一key值
  11. rowKey: "id",
  12. // 卡片之间的间隙
  13. gutter: 10,
  14. // 是否有周围的gutter
  15. hasAroundGutter: true,
  16. // 卡片在PC上的宽度
  17. width: 320,
  18. // 自定义行显示个数,主要用于对移动端的适配
  19. breakpoints: {
  20. 1200: {
  21. // 当屏幕宽度小于等于1200
  22. rowPerView: 4
  23. },
  24. 800: {
  25. // 当屏幕宽度小于等于800
  26. rowPerView: 3
  27. },
  28. 500: {
  29. // 当屏幕宽度小于等于500
  30. rowPerView: 2
  31. }
  32. },
  33. // 动画效果
  34. animationEffect: "animate__fadeInUp",
  35. // 动画时间
  36. animationDuration: 1000,
  37. // 动画延迟
  38. animationDelay: 300,
  39. // 背景色
  40. // backgroundColor: "#2C2E3A",
  41. // 图片字段选择器,如果层级较深,使用 xxx.xxx.xxx 方式
  42. imgSelector: "src.original",
  43. // 加载配置
  44. loadProps: {
  45. loading,
  46. error
  47. },
  48. // 是否懒加载
  49. lazyload: true
  50. });
  51. const page = ref(1);
  52. const list = ref([]);
  53. const pageSize = ref();
  54. /** 加载更多 */
  55. function handleLoadMore() {
  56. getList({
  57. page: page.value,
  58. pageSize: pageSize.value
  59. }).then(res => {
  60. list.value.push(...res);
  61. page.value += 1;
  62. });
  63. }
  64. function handleDelete(item, index) {
  65. list.value.splice(index, 1);
  66. }
  67. function handleClick(item) {
  68. console.log(item);
  69. }
  70. onMounted(() => {
  71. handleLoadMore();
  72. });
  73. </script>
  74. <template>
  75. <el-card shadow="never" class="!h-[85vh]">
  76. <template #header>
  77. <div class="card-header">
  78. <span class="font-medium">
  79. 瀑布流组件,采用开源的
  80. <el-link
  81. href="https://github.com/heikaimu/vue3-waterfall-plugin"
  82. target="_blank"
  83. style="margin: 0 4px 5px; font-size: 16px"
  84. >
  85. vue-waterfall-plugin-next
  86. </el-link>
  87. </span>
  88. </div>
  89. </template>
  90. <el-scrollbar height="78vh" class="content">
  91. <Waterfall :list="list" v-bind="options">
  92. <template #item="{ item, url, index }">
  93. <div
  94. class="bg-gray-900 rounded-lg shadow-md overflow-hidden transition-all duration-300 ease-linear hover:shadow-lg hover:shadow-gray-600 group"
  95. @click="handleClick(item)"
  96. >
  97. <div class="overflow-hidden">
  98. <LazyImg
  99. :url="url"
  100. class="cursor-pointer transition-all duration-300 ease-linear group-hover:scale-105"
  101. />
  102. </div>
  103. <div class="px-4 pt-2 pb-4 border-t border-t-gray-800">
  104. <h4 class="pb-4 text-gray-50 group-hover:text-yellow-300">
  105. {{ item.name }}
  106. </h4>
  107. <div
  108. class="pt-3 flex justify-between items-center border-t border-t-gray-600 border-opacity-50"
  109. >
  110. <div class="text-gray-50">$ {{ item.price }}</div>
  111. <div>
  112. <button
  113. class="px-3 h-7 rounded-full bg-red-500 text-sm text-white shadow-lg transition-all duration-300 hover:bg-red-600"
  114. @click.stop="handleDelete(item, index)"
  115. >
  116. 删除
  117. </button>
  118. </div>
  119. </div>
  120. </div>
  121. </div>
  122. </template>
  123. </Waterfall>
  124. <div class="flex justify-center py-10">
  125. <button
  126. class="px-5 py-2 rounded-full bg-gray-700 text-md text-white cursor-pointer hover:bg-gray-800 transition-all duration-300"
  127. @click="handleLoadMore"
  128. >
  129. 加载更多
  130. </button>
  131. </div>
  132. <el-backtop
  133. title="回到顶部"
  134. :right="35"
  135. :visibility-height="400"
  136. target=".content .el-scrollbar__wrap"
  137. >
  138. <backTop />
  139. </el-backtop>
  140. </el-scrollbar>
  141. </el-card>
  142. </template>