albumCarousel.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <album-carousel-item v-if="images" :images="images"></album-carousel-item>
  3. </template>
  4. <script setup>
  5. import { ref, computed, onMounted, onUnmounted } from "vue";
  6. import AlbumDrawBoxItem from "./albumCarouselItem";
  7. import "./cacheImg.js"
  8. import AlbumCarouselItem from "./albumCarouselItem";
  9. import {dateFormat} from "@/utils/date_util.js"
  10. const props =defineProps({
  11. sampleId:{
  12. type: [Number, String],
  13. required: false
  14. },
  15. farmId:{
  16. type: [Number, String],
  17. required: true
  18. },
  19. farmWork:{
  20. type: Object,
  21. required: false
  22. }
  23. })
  24. const images = ref(null);
  25. onMounted(() => {
  26. let params = {sampleId: props.sampleId,farmId: props.farmId}
  27. if(props.farmWork?.executeDate){
  28. let execcuteDate = new Date(props.farmWork.executeDate)
  29. let beforeExecuteDate = new Date(props.farmWork.beforeExecuteDate)
  30. const pastDate = new Date(beforeExecuteDate);
  31. const futureDate = new Date(execcuteDate);
  32. params.startDate = dateFormat(pastDate, "YY-mm-dd");
  33. params.endDate = dateFormat(futureDate, "YY-mm-dd");
  34. }
  35. VE_API.mini_farm.farmImgList(params).then(res => {
  36. if(res.code === 0){
  37. images.value = res.data
  38. }
  39. })
  40. });
  41. </script>
  42. <style lang="scss" scoped>
  43. @import "src/styles/index";
  44. </style>