51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
<!--packageH/toker/tokerIndex/tokerIndex.wxml-->
|
|
|
|
<van-tabs active="{{ active }}" nav-class="vanNav" bind:change="changeTags" title-active-color="#f15353">
|
|
<van-tab title="离我最近"></van-tab>
|
|
<!-- <van-tab title="好评优先"></van-tab> -->
|
|
</van-tabs>
|
|
|
|
|
|
<view class="list" wx:for="{{listData}}" wx:key="index">
|
|
<view class="lis">
|
|
<view class="top">
|
|
<view class="img">
|
|
<image src="{{item.thumb}}" ></image>
|
|
<view class="shopname">{{item.store_name}}</view>
|
|
</view>
|
|
<view class="distance">{{item.distance}}{{item.distance_unit}}</view>
|
|
</view>
|
|
<view class="bottom" wx:for="{{item.has_many_goods}}" bindtap="toDetail" data-id="{{datas.goods_id}}" wx:for-item="datas" wx:for-index="ind">
|
|
<view class="left">
|
|
<image src="{{datas.has_one_goods.thumb}}"></image>
|
|
</view>
|
|
<view class="right">
|
|
<view class="title">{{datas.has_one_goods.title}}</view>
|
|
<view class="rightBottom">
|
|
<view class="price">¥{{datas.has_one_goods.price}}</view>
|
|
<view class="sales">销量:<text>{{datas.has_one_goods.real_sales}}</text></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|