2023-04-17 16:14:18 +08:00

18 lines
840 B
Plaintext

<view class="card">
<view>
<image src="{{ item.image }}" id="id{{ item.id }}" lazy-load="lazyLoad" bindload="loadImg" class="cover" mode="widthFix"></image>
<view class="title">{{ item.title }}</view>
<view class="price">
from<view class="now">{{ item.country_symbol + item.bottomprice}}</view>
<view class="old" wx:if="{{ item.oldBottomPrice }}">{{ item.country_symbol + item.oldBottomPrice}}</view>
</view>
<view class="distance">
<view class="item" wx:for="{{ item.scope }}" wx:if="{{ i<3 }}" wx:for-item="s" wx:for-index="i" wx:key="i">
<image src="/img/{{ s.type }}.png" class="{{ s.type }}"></image>
<view class="name">{{ s.name }}</view>
<view class="intro">{{ s.intro }}</view>
<view class="time">{{ s.time }}</view>
</view>
</view>
</view>
</view>