index.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <template>
  2. <view :style="viewStyle" :class="'custom-class ' + utils.bem('image', { round })" @tap="onClick">
  3. <image
  4. v-if="!error"
  5. :src="src"
  6. :mode="mode"
  7. :lazy-load="lazyLoad"
  8. class="image-class van-image__img"
  9. :show-menu-by-longpress="showMenuByLongpress"
  10. @load="onLoad"
  11. @error="onError"
  12. />
  13. <view v-if="loading && showLoading" class="loading-class van-image__loading">
  14. <slot v-if="useLoadingSlot" name="loading" />
  15. <van-icon v-else name="photo-o" size="22" />
  16. </view>
  17. <view v-if="error && showError" class="error-class van-image__error">
  18. <slot v-if="useErrorSlot" name="error" />
  19. <van-icon v-else name="warning-o" size="22" />
  20. </view>
  21. </view>
  22. </template>
  23. <script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
  24. <script>
  25. 'use strict';
  26. Object.defineProperty(exports, '__esModule', {
  27. value: true
  28. });
  29. var utils_1 = require('../common/utils');
  30. var component_1 = require('../common/component');
  31. var button_1 = require('../mixins/button');
  32. var open_type_1 = require('../mixins/open-type');
  33. var FIT_MODE_MAP = {
  34. none: 'center',
  35. fill: 'scaleToFill',
  36. cover: 'aspectFill',
  37. contain: 'aspectFit',
  38. widthFix: 'widthFix',
  39. heightFix: 'heightFix'
  40. };
  41. component_1.VantComponent({
  42. mixins: [button_1.button, open_type_1.openType],
  43. classes: ['custom-class', 'loading-class', 'error-class', 'image-class'],
  44. props: {
  45. src: {
  46. type: String,
  47. observer: function () {
  48. this.setData({
  49. error: false,
  50. loading: true
  51. });
  52. }
  53. },
  54. round: Boolean,
  55. width: {
  56. type: null,
  57. observer: 'setStyle'
  58. },
  59. height: {
  60. type: null,
  61. observer: 'setStyle'
  62. },
  63. radius: null,
  64. lazyLoad: Boolean,
  65. useErrorSlot: Boolean,
  66. useLoadingSlot: Boolean,
  67. showMenuByLongpress: Boolean,
  68. fit: {
  69. type: String,
  70. value: 'fill',
  71. observer: 'setMode'
  72. },
  73. showError: {
  74. type: Boolean,
  75. value: true
  76. },
  77. showLoading: {
  78. type: Boolean,
  79. value: true
  80. }
  81. },
  82. data: {
  83. error: false,
  84. loading: true,
  85. viewStyle: ''
  86. },
  87. mounted: function () {
  88. this.setMode();
  89. this.setStyle();
  90. },
  91. methods: {
  92. setMode: function () {
  93. this.setData({
  94. mode: FIT_MODE_MAP[this.fit]
  95. });
  96. },
  97. setStyle: function () {
  98. var _a = this;
  99. var width = _a.width;
  100. var height = _a.height;
  101. var radius = _a.radius;
  102. var style = '';
  103. if (utils_1.isDef(width)) {
  104. style += 'width: ' + utils_1.addUnit(width) + ';';
  105. }
  106. if (utils_1.isDef(height)) {
  107. style += 'height: ' + utils_1.addUnit(height) + ';';
  108. }
  109. if (utils_1.isDef(radius)) {
  110. style += 'overflow: hidden;';
  111. style += 'border-radius: ' + utils_1.addUnit(radius) + ';';
  112. }
  113. this.setData({
  114. viewStyle: style
  115. });
  116. },
  117. onLoad: function (event) {
  118. this.setData({
  119. loading: false
  120. });
  121. this.$emit('load', event.detail);
  122. },
  123. onError: function (event) {
  124. this.setData({
  125. loading: false,
  126. error: true
  127. });
  128. this.$emit('error', event.detail);
  129. },
  130. onClick: function (event) {
  131. this.$emit('click', event.detail);
  132. }
  133. }
  134. });
  135. </script>
  136. <style>
  137. @import './index.css';
  138. </style>