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