imagePicker.wxml 774 B

1234567891011121314
  1. <!--components/imagePicker/imagePicker.wxml-->
  2. <view class="image-list">
  3. <label wx:for="{{value}}" wx:for-item="img" wx:key="*this">
  4. <image class="image"
  5. style="position: relative; margin: {{imageMargin}}rpx; width: {{imageWidth}}rpx; height: {{imageHeight}}rpx;"
  6. src="{{img}}" mode="aspectFill" data-url="{{img}}" catchtap="previewImage">
  7. <icon wx:if="{{!readonly}}" style="position: absolute; top: 0; left: 0;" type="cancel" size="20"
  8. data-url="{{img}}" catchtap="removeImage"></icon>
  9. </image>
  10. </label>
  11. <image wx:if="{{value.length < max && !readonly}}" class="image"
  12. style="margin: {{imageMargin}}rpx; width: 145rpx; height: 145rpx;" src="/images/add.png" mode="aspectFill"
  13. catchtap="addImage"></image>
  14. </view>