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.
|
|
|
|
<view class="box">
|
|
|
|
|
<view class="tj-title">商品推荐</view>
|
|
|
|
|
<view wx:if="{{showLoading}}">加载中...</view>
|
|
|
|
|
<view class="tj-list" wx:else>
|
|
|
|
|
<view class="proitem" wx:for="{{tjList}}" bindtap="gotoDetail" data-item="{{item}}">
|
|
|
|
|
<view class="item-hd">
|
|
|
|
|
<image lazy-load src="{{item.headimg}}"></image>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="item-bm">
|
|
|
|
|
<view class="protitle textOver">{{item.title}}</view>
|
|
|
|
|
<view class="pro-price">
|
|
|
|
|
{{item.price/100}}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|