recommend.wxml 913 B

123456789101112131415161718192021
  1. <view class="load-more" wx:if="{{recommendList.length > 0}}">
  2. <view class="left">
  3. </view> 为您推荐 <view class="right">
  4. </view>
  5. </view>
  6. <view class="recommend" wx:if="{{recommendList.length > 0}}">
  7. <navigator class="recommend-top" wx:for="{{recommendList}}" wx:key="unique" url="/pages/product/activity/index?aid={{item.aid}}" open-type="redirect" hover-class="none">
  8. <view class="recommend-img">
  9. <image src="{{item.logo}}" wx:if="{{item.atype == 1}}" mode="aspectFill" />
  10. <image src="{{imgUrl}}{{item.logo}}" mode="aspectFill" wx:else />
  11. </view>
  12. <view class="rightDet">
  13. <view class="top-tit">{{item.title}}</view>
  14. <view class="top-sub">
  15. <text class="total">累计{{item.people}}人</text>
  16. <text class="recommendPrice">¥<text style="font-size: 40rpx;font-weight: 600;">{{item.price}}</text></text>
  17. </view>
  18. </view>
  19. </navigator>
  20. </view>