|
@@ -21,28 +21,31 @@
|
|
|
<view class="main">
|
|
|
<view
|
|
|
class="list"
|
|
|
+ wx:for="{{listData}}"
|
|
|
+ wx:key="id"
|
|
|
+ data-item="{{item}}"
|
|
|
bind:tap="jumpBusinessDetail">
|
|
|
<view class="top">
|
|
|
<view class="photo-wrap">
|
|
|
- <image src=""></image>
|
|
|
+ <image src="{{item.shop_img_url}}"></image>
|
|
|
</view>
|
|
|
<view class="name-wrap">
|
|
|
- <view class="name">上三村合作社</view>
|
|
|
- <view class="abstract">5商品 20人关注</view>
|
|
|
+ <view class="name">{{item.shop_name}}</view>
|
|
|
+ <view class="abstract">{{item.shop_product_count}}商品 {{item.shop_follow_num}}人关注</view>
|
|
|
</view>
|
|
|
<button class="btn" type="default">查看详情</button>
|
|
|
</view>
|
|
|
<view class="phone">
|
|
|
<view class="label">电话:</view>
|
|
|
- <view class="value">12345678901</view>
|
|
|
+ <view class="value">{{item.shop_phone}}</view>
|
|
|
</view>
|
|
|
<view class="wechat">
|
|
|
<view class="label">微信:</view>
|
|
|
- <view class="value">12345678901</view>
|
|
|
+ <view class="value">{{item.user_code_url}}</view>
|
|
|
</view>
|
|
|
<view class="adress">
|
|
|
<text class="label">地址:</text>
|
|
|
- <text class="value">浙江省绍兴市红河街道吧啦吧啦301</text>
|
|
|
+ <text class="value">{{item.shop_address.address_name}}{{item.shop_address.name}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|