您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

form-upload-more.wxml 851B

12345678910111213141516171819202122232425
  1. <view-flex styleCss="{{styleCss}}" justify="space-between" align="center">
  2. <view class="form-label">
  3. {{uploadTxt}}
  4. </view>
  5. </view-flex>
  6. <view class="check-attachment-box">
  7. <block wx:for="{{imageList}}" >
  8. <view class="render-image-box">
  9. <view class="check-attachment-image">
  10. <button plain="true" style="border-style: none;">
  11. <image class="attachment-img" mode="aspectFit" src="{{ item }}" data-href="{{item}}"></image>
  12. </button>
  13. </view>
  14. <button class="img-btn-delete" data-index="{{index}}" bind:tap="delImage">删除</button>
  15. </view>
  16. </block>
  17. <block >
  18. <view class="check-attachment-add">
  19. <button bind:tap="uploadFiles" plain="true" style="border-style: none;border: 1PX dashed #1677ff;background-color: #fafafa;">
  20. +
  21. </button>
  22. </view>
  23. </block>
  24. </view>