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.
 

15 lines
489 B

<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>
<image class="" src="{{item.attributes['image-url']}}" background-size="cover"></image>
</view>
<view>
<text> {{item.attributes.name}} </text>
<text> {{item.attributes.price}} </text>
</view>
</navigator>
</block>
</scroll-view>
</view>