PicturePreview.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <template>
  2. <el-dialog
  3. v-model="dialogVisible"
  4. width="60%"
  5. class="picture-preview-wrap v-dialog"
  6. :show-close="false"
  7. top="10vh"
  8. append-to-body
  9. >
  10. <div class="dialog-body">
  11. <div ref="imageRef" v-if="isArray">
  12. <el-carousel
  13. ref="carouselRef"
  14. height="80vh"
  15. :initial-index="curIndex"
  16. :autoplay="false"
  17. indicator-position="none"
  18. >
  19. <template v-for="item in imageUrl" :key="item">
  20. <template v-for="ele in ['07','08','09','10','11','12','13']" :key="ele">
  21. <el-carousel-item >
  22. <!-- <img
  23. class="image no-events"
  24. :src="item.imgPath"
  25. alt=""
  26. fit="cover"
  27. /> -->
  28. <img
  29. class="image no-events"
  30. :src="require(`@/assets/images/home/HB-ws0y1menggxv/HB-ws0y1menggxv2025-01-${ele}.jpg`)"
  31. alt=""
  32. fit="cover"
  33. />
  34. <div class="watermark-style">
  35. <div class="left">
  36. <div class="region">2区</div>
  37. <div class="date">{{ item.uploadDate }}</div>
  38. <div class="whq">
  39. {{ item.bigPeriodName
  40. }}<span v-show="item.bigPeriodName && item.smallPeriodName"
  41. >-</span
  42. >{{ item.smallPeriodName }}
  43. </div>
  44. <div class="code">
  45. <div class="code-txt">生长正常</div>
  46. </div>
  47. <div class="weather">
  48. <div class="temperature">
  49. <img src="@/assets/img/sun_icon.png" alt="" />
  50. <div class="num">
  51. <div>26-32℃</div>
  52. </div>
  53. </div>
  54. <div class="temperature">
  55. <img src="@/assets/img/rain_icon.png" alt="" />
  56. <div class="num">
  57. <div>60% 0.34ml</div>
  58. </div>
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. </el-carousel-item>
  64. </template>
  65. </template>
  66. </el-carousel>
  67. </div>
  68. <div style="height: 100%" v-else>
  69. <img
  70. class="image no-events"
  71. :src="imageUrl.filename + '?x-oss-process=image/resize,w_2000'"
  72. alt=""
  73. fit="cover"
  74. ref="imageRef"
  75. />
  76. <div class="watermark-style">
  77. <div class="left">
  78. <div class="region">2区</div>
  79. <div class="date">{{ imageUrl.uploadDate }}</div>
  80. <div class="whq">
  81. {{ imageUrl.bigPeriodName
  82. }}<span
  83. v-show="imageUrl.bigPeriodName && imageUrl.smallPeriodName"
  84. >-</span
  85. >{{ imageUrl.smallPeriodName }}
  86. </div>
  87. <div class="code">
  88. <div class="code-txt">生长正常</div>
  89. </div>
  90. <div class="weather">
  91. <div class="temperature">
  92. <img src="@/assets/img/sun_icon.png" alt="" />
  93. <div class="num">
  94. <div>26-32℃</div>
  95. </div>
  96. </div>
  97. <div class="temperature">
  98. <img src="@/assets/img/rain_icon.png" alt="" />
  99. <div class="num">
  100. <div>60% 0.34ml</div>
  101. </div>
  102. </div>
  103. </div>
  104. </div>
  105. </div>
  106. </div>
  107. <!-- 自定义水印内容 -->
  108. <!-- <slot v-else></slot> -->
  109. </div>
  110. </el-dialog>
  111. </template>
  112. <script setup>
  113. import eventBus from "@/api/eventBus";
  114. import { ref, watch, computed } from "vue";
  115. const props = defineProps({
  116. imageUrl: {
  117. type: [Object, Array],
  118. default: () => {},
  119. },
  120. switchValue: {
  121. type: Boolean,
  122. default: false,
  123. },
  124. customWatermark: {
  125. type: Boolean,
  126. default: false,
  127. },
  128. curIndex: {
  129. type: Number,
  130. default: 0,
  131. },
  132. });
  133. const curDate = new Date();
  134. const curYear = curDate.getFullYear();
  135. const curMonth = curDate.getMonth() + 1;
  136. const curDay = curDate.getDate();
  137. const isArray = computed(() => Array.isArray(props.imageUrl));
  138. const dialogVisible = ref(false);
  139. eventBus.on('dialog:show',(e)=>{
  140. dialogVisible.value = e
  141. })
  142. const carouselRef = ref(null);
  143. const imageRef = ref(null);
  144. const caruuselItem = ref(null);
  145. </script>
  146. <style lang="scss">
  147. .picture-preview-wrap {
  148. padding: 0;
  149. .el-dialog__header{
  150. padding-bottom: 0 !important;
  151. }
  152. .dialog-body {
  153. position: relative;
  154. width: 100%;
  155. height: 100%;
  156. box-sizing: border-box;
  157. .image {
  158. width: 100%;
  159. height: 100%;
  160. }
  161. }
  162. }
  163. ::v-deep {
  164. .el-carousel__arrow {
  165. background: rgba(0, 0, 0, 0.4);
  166. width: 50px;
  167. height: 50px;
  168. font-size: 28px;
  169. }
  170. }
  171. </style>
  172. <style lang="scss">
  173. .picture-preview {
  174. height: 89%;
  175. box-sizing: border-box;
  176. .el-dialog__body {
  177. height: 100%;
  178. box-sizing: border-box;
  179. }
  180. }
  181. </style>