albumCarousel7d.vue 2.8 KB

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