12345678910111213141516171819202122232425262728293031 |
- <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="store-grid">
- <view class="grid col-2" style="margin-bottom:100rpx">
- <block wx:for="{{storeList}}">
- <view>
- <view class="margin-sm 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.storePrincipalPhone}}</view>
- </view>
- <view class="store-img">
- <image src="../../static/images/my/ico_hotel@3x.png"></image>
- </view>
- </view>
- </view>
- </block>
- </view>
- </view>
-
- <tui-button type="blue" height="98rpx" shape="rightAngle" bindtap="toAddStore" style="position:fixed;bottom:0;width:100%;">新增门店</tui-button>
- </view>
|