roomManger.wxml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 class="addRoom" bindtap="addRoom">+
  21. </view>
  22. <view class="result" wx:if="{{roomList.length > 0}}">
  23. <view>
  24. <view wx:for="{{roomList}}" wx:key class="house-list">
  25. <partyItem room="{{item}}" index="{{index}}" bindgotoWV="gotoWV"></partyItem>
  26. </view>
  27. </view>
  28. </view>
  29. <view class="unbrand" wx:else>
  30. <image src="/static/images/img_nodata@2x.png"></image>
  31. <view class="text">暂无相关数据</view>
  32. </view>
  33. </view>