albumCarousel7d.vue 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <template>
  2. <template v-for="(images,index) in imagesList" :key="index">
  3. <album-carousel-item :images="images"></album-carousel-item>
  4. <div style="height: 5px"></div>
  5. </template>
  6. </template>
  7. <script setup>
  8. import { ref, computed, onMounted, onUnmounted } from "vue";
  9. import AlbumDrawBoxItem from "./albumCarouselItem";
  10. import "./cacheImg.js"
  11. import AlbumCarouselItem from "./albumCarouselItem";
  12. import {dateFormat} from "@/utils/date_util.js"
  13. const props =defineProps({
  14. sampleId:{
  15. type: [Number, String],
  16. required: false
  17. },
  18. farmId:{
  19. type: [Number, String],
  20. required: true
  21. },
  22. farmWork:{
  23. type: Object,
  24. required: false
  25. }
  26. })
  27. const imagesList = ref([]);
  28. onMounted(() => {
  29. let params = {sampleId: props.sampleId,farmId: props.farmId}
  30. if(props.farmWork?.executeDate){
  31. let execcuteDate = new Date(props.farmWork.executeDate)
  32. let beforeExecuteDate = new Date(props.farmWork.beforeExecuteDate)
  33. const pastDate = new Date(beforeExecuteDate);
  34. const futureDate = new Date(execcuteDate);
  35. params.startDate = dateFormat(pastDate, "YY-mm-dd");
  36. params.endDate = dateFormat(futureDate, "YY-mm-dd");
  37. }
  38. VE_API.image.list(params).then(res => {
  39. if(res.code === 0){
  40. let result = splitByWeek(res.data, params.startDate, params.endDate);
  41. if(result && result.length > 0){
  42. result = result.reverse()
  43. }
  44. for(let i=0;result != null && i<result.length;i++){
  45. if (result[i] && result[i].length > 0){
  46. imagesList.value.push(result[i])
  47. }
  48. }
  49. }
  50. })
  51. });
  52. function splitByWeek(items, startDate, endDate) {
  53. // 将开始时间和结束时间转换为时间戳
  54. const start = new Date(startDate).getTime();
  55. const end = new Date(endDate).getTime();
  56. // 创建一个用于存储按周分组的结果
  57. const weeklyGroups = [];
  58. // 遍历每一项
  59. items.forEach(item => {
  60. const uploadDate = new Date(item.uploadDate).getTime();
  61. // 确保上传日期在开始日期和结束日期之间
  62. if (uploadDate >= start && uploadDate <= end) {
  63. // 计算上传日期属于第几周
  64. const weekIndex = Math.floor((uploadDate - start) / (7 * 24 * 60 * 60 * 1000));
  65. // 如果该周的数组不存在,则创建一个
  66. if (!weeklyGroups[weekIndex]) {
  67. weeklyGroups[weekIndex] = [];
  68. }
  69. // 将当前项添加到对应的周数组中
  70. weeklyGroups[weekIndex].push(item);
  71. }
  72. });
  73. return weeklyGroups;
  74. }
  75. </script>
  76. <style lang="scss" scoped>
  77. @import "src/styles/index";
  78. </style>