1234567891011121314151617181920212223242526272829303132333435 |
- <view>
- <view class="storeContent">
- <view class="storeSearch">
- <image src="../../static/images/icon/search@2x.png"></image>
- <input focus="true" bindconfirm="search" bindinput="inputChange" value="{{fetcherData.name}}" type="text" placeholder="请输入场景名称"
- placeholder-class="placeholderStyle" />
- </view>
- <view class="searchBtn" bindtap="search">搜索</view>
- </view>
- <view style="height: 74rpx;"></view>
- <view class="resulst">
- <view wx:if="{{fetcherData.type=='21'}}" class="storeList">
- <view wx:for="{{storeList}}">
- <storeItem store="{{item}}" bindgotoWV="gotoWV"></storeItem>
- </view>
- </view>
- <view wx:else>
- <view wx:for="{{roomList}}" wx:key class="house-list">
- <roomItem room="{{item}}" bindgotoWV="gotoWV"></roomItem>
- </view>
- </view>
- </view>
- <view class="unbrand"
- wx:if="{{fetcherData.type=='21' && isSearch&& storeList.length==0 || fetcherData.type!='21' && isSearch&& roomList.length==0 }}">
- <image src="/static/images/img_nodata@2x.png"></image>
- <view class="text">暂无相关数据</view>
- </view>
- </view>
|