1234567891011121314151617181920212223242526272829303132333435 |
- <view
- class="item-info"
- wx:for="{{listData}}"
- wx:key="index"
- data-item="{{item}}"
- bindtap="jumpBusinessDetail">
- <view class="top">
- <view class="logo">
- <image
- mode="aspectFill"
- src="{{item.shop_img_url || '../../image/common/logo.png'}}"></image>
- </view>
- <view class="info">
- <view class="name">{{item.shop_name}}</view>
- <view class="goods-count">{{item.shop_product_count}}商品 {{item.shop_follow_num}}人关注</view>
- </view>
- <button
- class="btn-contact"
- type="default"
- data-item="{{item}}"
- catch:tap="handleContact">点击联系
- </button>
- </view>
- <view class="bottom">
- <button
- class="tel"
- type="default">电话:{{item.shop_phone}}
- </button>
- <button
- class="wechat"
- type="default"
- wx:if="{{!!item.user_wechat_code}}">微信:{{item.user_wechat_code}}
- </button>
- </view>
- </view>
|