roomManger.wxml 1.5 KB

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