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.
|
|
|
|
<!--pages/activity/redlist/index.wxml-->
|
|
|
|
|
<image src="https://static.ticket.sz-trip.com/xcxImages/listtop/redlist.png" mode="widthFix" class="mainimg"></image>
|
|
|
|
|
<view class="item" wx:for="{{list}}" bindtap="gotoDetail" data-item="{{item}}">
|
|
|
|
|
<image src="{{item.headimg}}" mode="aspectFill" class="mainimg"></image>
|
|
|
|
|
<view class="item-info">
|
|
|
|
|
<view class="item-title textOver">{{item.title}}</view>
|
|
|
|
|
<view class="tags">
|
|
|
|
|
<view class="tag textOver" wx:for="{{item.display_tags}}">{{item}}</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="product-bottom">
|
|
|
|
|
<view class="price"><text>¥</text><text>{{item.price/100}}</text>起</view>
|
|
|
|
|
<view class="btn">立即购买</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<image bindtap="goTop" mode="widthFix" src="https://m.cloud.sz-trip.com/static/images/activity/redTravel/return.png" class="top"></image>
|