12 lines
445 B
Plaintext
12 lines
445 B
Plaintext
<view class="shop-item" wx:for="{{ shopList}}" wx:key="id">
|
|
<view class="thumb">
|
|
<image src="{{ item.image }}" mode="aspectFill" />
|
|
</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>
|
|
<wxs src="../../utils/tools.wxs" module="tools" /> |