wait-for-do-preview.wxml 1.0 KB

12345678910111213141516171819202122232425
  1. <import src="../../../../public/pages/public-view.wxml" />
  2. <scroll-view scroll-y class="bg-scroll-view">
  3. <view style="width: 100%;height: 30rpx;"></view>
  4. <view class="item-bg">
  5. <view class="item" wx:for="{{img}}" wx:key="" bindlongpress="changeDelete" bindtap="detailsAction" id="{{index}}">
  6. <image src="{{item}}"></image>
  7. <view wx:if="{{status==1}}" id="{{index}}" bindtap="deleteAction" >
  8. <image src="../../../../icon/mine/delete_img.png"></image>
  9. </view>
  10. </view>
  11. <view class="item" wx:if="{{upload.addC != 0 && type == 'upload' && status == 0}}" bindtap="addImg">
  12. <image src="../../../../icon/mine/add_img.png"></image>
  13. </view>
  14. </view>
  15. <view class="scroll-view-bottom-view{{adapter.suffix}}"></view>
  16. </scroll-view>
  17. <template wx:if="{{status==0 && type=='upload'}}" is="bottom-view-botton" data="{{t: '上传', suffix: adapter.suffix, action: 'submitAction'}}" />
  18. <template wx:elif="{{status==1 && type=='upload'}}" is="bottom-view-botton" data="{{t: '完成', suffix: adapter.suffix, action: 'finishDeleteAction'}}" />