You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
575 B

1 year ago
  1. <!--components/Uploader.wxml-->
  2. <van-uploader preview-image="{{ true }}" preview-full-image="{{true}}" max-count="1" capture file-list="{{ fileList }}" bind:after-read="afterRead" bind:delete="deleteImg">
  3. <image src="{{info.url}}" mode="widthFix" alt="" wx:if="{{ fileList.length === 0 }}"></image>
  4. <view class="position-absolute idCard-absolute" wx:if="{{ fileList.length === 0 }}">
  5. <van-icon name="photograph" color="#1989fa" size="20" />
  6. <view class="font-size-12 font-weight-600">{{info.text}}</view>
  7. </view>
  8. </van-uploader>