fashion-news.wxml
453 Bytes
<wxs src="../../wxs/helper.wxs" module="helper" />
<view class="fashion-news" wx:if="{{fashionNews.length}}">
<view wx:for="{{fashionNews}}" wx:for-item="fashion" wx:key="id" class="fashion-news-item" bindtap="goDetail" id="{{fashion.id}}" data-index="{{index}}">
<image class="cover" src="{{helper.image(fashion.pic, 690, 440, 1)}}" mode="aspectFill"></image>
<view class="title eps-2">{{fashion.title}}</view>
</view>
</view>