12345678910111213141516171819 |
- <view class="container">
- <view class="bg-white store-grid">
- <view class="grid col-2">
- <block wx:for="{{storeList}}">
- <view>
- <view class="margin-xs padding-sm radius shadow-warp store-list-row" bindtap="toDetail" data-id="{{item.id}}">
- <view style="width:100%;">
- <view class="padding-bottom-sm store-name">{{item.storeName}}</view>
- <view class="store-mobile">{{item.storeTel}}</view>
- </view>
- <view class="store-img">
- <image src="../../static/images/my/ico_hotel@3x.png"></image>
- </view>
- </view>
- </view>
- </block>
- </view>
- </view>
- </view>
|