image-fit.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <div class="flex-column-align-center" :style="{height: imageHeight + 'px', width: '100%'}">
  3. <image :src="src" :mode="mode" @load="load" :class="customClass" :style="{height: imageHeight + 'px', width: imageWidth + 'px'}" />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. props: {
  9. src: String,
  10. mode: {
  11. default: 'aspectFit',
  12. type: String
  13. },
  14. offset: {
  15. default: 0,
  16. type: Number
  17. },
  18. ratio: {
  19. default: 1.5,
  20. type: Number
  21. },
  22. customClass: String
  23. },
  24. data() {
  25. return {
  26. imageHeight: 270,
  27. imageWidth: 375,
  28. screenWidth: 375
  29. }
  30. },
  31. methods: {
  32. load(e) {
  33. let screenWidth = this.$store.state.systemInfo.screenWidth - this.offset
  34. let realWidth = e.detail.width
  35. let realHeight = e.detail.height
  36. if (realHeight / realWidth > this.ratio) {
  37. realHeight = realWidth * this.ratio
  38. }
  39. this.imageHeight = parseInt((screenWidth / realWidth) * realHeight)
  40. this.imageWidth = screenWidth
  41. this.screenWidth = screenWidth
  42. }
  43. }
  44. }
  45. </script>
  46. <style scoped>
  47. </style>