week.wxml 565 B

1234567891011
  1. <view class="hotSection">
  2. <view class="hotWares" style="flex-direction:row;">
  3. <view wx:for="{{recommend}}" bindtap="openClass" wx:key="{{index}}" class="hotWareCard" data-classId="{{item.classId}}" data-title="{{item.title}}">
  4. <image class="wareCardImg" src="{{item.img}}" />
  5. <view class="titleSummary">
  6. <text class="wareCardTitle">{{item.title}}</text>
  7. <text class="wareCardTip">{{item.grade}}</text>
  8. </view>
  9. </view>
  10. </view>
  11. </view>