<!--pages/shoplist/shoplist.wxml-->
<wxs src="../../utils/tools.wxs" module="tools"></wxs>
<view class="shop-item" wx:for="{{ shopList }}" wx:key="id">
  <view class="thumb">
    <image src="{{ item.image }}"></image>
  </view>
  <view class="info">
    <text class="shop-title">{{ item.name }}</text>
    <text>电话：{{ tools.splitPhone(item.phone) }}</text>
    <text>地址：{{ item.address }}</text>
    <text>营业时间：{{ item.businessHours }}</text>
  </view>
</view>
