12345678910111213141516171819202122232425262728293031323334 |
- <view class="container">
- <view class="cu-bar search bg-white margin-bottom-xs">
- <view class="search-form round">
- <text class="cuIcon-search"></text>
- <input type="text" placeholder="输入门店名称" confirm-type="search" data-name="searchParams.storeName" catchinput="inputedit"></input>
- </view>
- <view class="action">
- <button class="cu-btn bg-blue shadow-blur round" bindtap="searchStore">搜索</button>
- </view>
- </view>
- <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="toDevice" 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_equipment@3x.png"></image>
- </view>
- </view>
- </view>
- </block>
- </view>
- </view>
- <!--加载loadding-->
- <tui-loadmore visible="{{loadding}}" index="{{3}}" type="red"></tui-loadmore>
- <tui-nomore visible="{{!pullUpOn}}" bgcolor="#fafafa"></tui-nomore>
- <!--加载loadding-->
- </view>
|