12345678910111213141516171819202122 |
- <view>
- <lip-sync />
- <auth bindlogin="reloadData" />
- <view class="storeContent">
- <view class="storeSearch">
- <image src="../../static/images/icon/search@2x.png"></image>
- <input bindinput="inputChange" type="text" placeholder="请输入VR场景名称" placeholder-class="placeholderStyle" />
- </view>
- <view class="searchBtn" bindtap="search">搜索</view>
- </view>
- <view style="height: 64rpx;"></view>
- <view class="resulst" wx:if="{{roomList.length>0}}">
- <view wx:for="{{roomList}}" wx:key class="house-list">
- <roomItem room="{{item}}" bindgotoWV="gotoWV"></roomItem>
- </view>
- </view>
- <view class="unbrand" wx:else>
- <image src="/static/images/img_nodata@2x.png"></image>
- <view class="text">暂无相关数据</view>
- </view>
- </view>
|