123456789101112131415161718192021 |
- <view class="load-more" wx:if="{{recommendList.length > 0}}">
- <view class="left">
- </view> 为您推荐 <view class="right">
- </view>
- </view>
- <view class="recommend" wx:if="{{recommendList.length > 0}}">
- <navigator class="recommend-top" wx:for="{{recommendList}}" wx:key="unique" url="/pages/product/activity/index?aid={{item.aid}}" open-type="redirect" hover-class="none">
- <view class="recommend-img">
- <image src="{{item.logo}}" wx:if="{{item.atype == 1}}" mode="aspectFill" />
- <image src="{{imgUrl}}{{item.logo}}" mode="aspectFill" wx:else />
- </view>
- <view class="rightDet">
- <view class="top-tit">{{item.title}}</view>
- <view class="top-sub">
- <text class="total">累计{{item.people}}人</text>
- <text class="recommendPrice">¥<text style="font-size: 40rpx;font-weight: 600;">{{item.price}}</text></text>
- </view>
- </view>
- </navigator>
- </view>
|