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.

13 lines
398 B

8 years ago
<view>
<scroll-view scroll-y="true" height="100%">
<block wx:for="{{items}}" wx:for-item="item">
<navigator url="../show_product/show_product?id={{item.id}}">
<view bindtap="bindViewTap">
<image class="" src="{{item.url}}" background-size="cover"></image>
<text> {{item.name}} </text>
</view>
</navigator>
</block>
</scroll-view>
</view>