roomManger.wxml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <view>
  2. <!-- <lip-sync /> -->
  3. <auth bindlogin="reloadData" />
  4. <view class="storeContent">
  5. <view class="tab-header">
  6. <view class="un-start">
  7. <text>待开始</text>
  8. </view>
  9. <view class="has-start"> <text>已开始</text></view>
  10. </view>
  11. <view class="search-container">
  12. <view class="storeSearch">
  13. <image src="../../static/images/icon/search@2x.png"></image>
  14. <input wx:if="{{fetcherData.type==31}}" bindconfirm="search" bindinput="inputChange" type="text" placeholder="请输入VR场景名称" placeholder-class="placeholderStyle" />
  15. <input wx:else bindconfirm="search" bindinput="inputChange" type="text" placeholder="请输入场景名称" placeholder-class="placeholderStyle" />
  16. </view>
  17. <view class="searchBtn" bindtap="search">搜索</view>
  18. </view>
  19. </view>
  20. <view style="height: 84rpx;"></view>
  21. <view class="result" wx:if="{{roomList.length > 0}}">
  22. <view>
  23. <view wx:for="{{roomList}}" wx:key class="house-list">
  24. <partyItem room="{{item}}" index="{{index}}" bindgotoWV="gotoWV"></partyItem>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="unbrand" wx:else>
  29. <image src="/static/images/img_nodata@2x.png"></image>
  30. <view class="text">暂无相关数据</view>
  31. </view>
  32. </view>