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.
14 lines
774 B
14 lines
774 B
<!--components/picshow/picshow.wxml-->
|
|
<view class="main">
|
|
<view wx:for="{{columns}}" wx:key="index" class="column">
|
|
<view wx:for="{{item}}" wx:key="index" class="column_item" wx:for-item="pics">
|
|
<!-- 收藏标志 -->
|
|
<image class="shouca" src="/images/ic_shouc@2x.png" wx:if="{{pics.isCollected}}"></image>
|
|
<image class="shouca" src="" wx:else="{{true}}"></image>
|
|
<image src="{{pics.type===1?cdn+pics.coverUrl:cdn+pics.fileUrl}}" class="column_pic" mode="widthFix" data-item="{{pics}}" bindtap="to" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="hide">
|
|
<image wx:for="{{tempPics}}" wx:key="index" src="{{item.type===1?cdn+item.coverUrl:cdn+item.fileUrl}}" bindload="loadPic" binderror="loadPicError" data-index="{{index}}" />
|
|
</view> --> |