sence.wxml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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 wx:if="{{fetcherData.type==31}}" bindinput="inputChange" type="text" placeholder="请输入VR场景名称"
  8. placeholder-class="placeholderStyle" />
  9. <input wx:else bindinput="inputChange" type="text" placeholder="请输入直播间名称" placeholder-class="placeholderStyle" />
  10. </view>
  11. <view class="searchBtn" bindtap="search">搜索</view>
  12. </view>
  13. <view style="height: 84rpx;"></view>
  14. <view class="resulst" wx:if="{{roomList.length>0}}">
  15. <view class="storeList" wx:if="{{fetcherData.type==31}}">
  16. <view wx:for="{{roomList}}" wx:for-index="index">
  17. <storeItem store="{{item}}" index="{{index}}" bindgotoWV="storeGotoWv">
  18. </storeItem>
  19. </view>
  20. </view>
  21. <view wx:else>
  22. <view wx:for="{{roomList}}" wx:key class="house-list">
  23. <roomItem room="{{item}}" index="{{index}}" bindgotoWV="gotoWV"></roomItem>
  24. </view>
  25. </view>
  26. </view>
  27. <view class="unbrand" wx:else>
  28. <image src="/static/images/img_nodata@2x.png"></image>
  29. <view class="text">暂无相关数据</view>
  30. </view>
  31. </view>