sence.wxml 791 B

12345678910111213141516171819202122
  1. <view>
  2. <lip-sync />
  3. <auth bindlogin="reloadData" />
  4. <view class="storeContent">
  5. <view class="storeSearch">
  6. <image src="../../static/images/icon/search@2x.png"></image>
  7. <input bindinput="inputChange" type="text" placeholder="请输入VR场景名称" placeholder-class="placeholderStyle" />
  8. </view>
  9. <view class="searchBtn" bindtap="search">搜索</view>
  10. </view>
  11. <view style="height: 64rpx;"></view>
  12. <view class="resulst" wx:if="{{roomList.length>0}}">
  13. <view wx:for="{{roomList}}" wx:key class="house-list">
  14. <roomItem room="{{item}}" bindgotoWV="gotoWV"></roomItem>
  15. </view>
  16. </view>
  17. <view class="unbrand" wx:else>
  18. <image src="/static/images/img_nodata@2x.png"></image>
  19. <view class="text">暂无相关数据</view>
  20. </view>
  21. </view>