| | |
| | | <view> |
| | | <view class="list"> |
| | | <view wx:for="{{ downloadList }}" class="item"> |
| | | <view data-i="{{index}}" bindtap="itemCheck" wx:for="{{ downloadList }}" class="item"> |
| | | <image class="img" src="{{ item.url }}" mode="aspectFill"></image> |
| | | <view wx:if="{{ item.paddingStatus == 2 }}" class="shade">等待下载</view> |
| | | <view wx:if="{{ item.paddingStatus == 3 }}" class="shade">下载完成</view> |
| | | <image data-i="{{index}}" bindtap="itemCheck" wx:if="{{ item.checked }}" class="check" src="../../static/icon/ic_select_sel@2x.png"></image> |
| | | <image wx:else data-i="{{index}}" bindtap="itemCheck" class="check" src="../../static/icon/ic_select.png"></image> |
| | | <image wx:if="{{ item.checked }}" class="check" src="../../static/icon/ic_select_sel@2x.png"></image> |
| | | <image wx:else bindtap="itemCheck" class="check" src="../../static/icon/ic_select.png"></image> |
| | | </view> |
| | | </view> |
| | | <!-- --> |