1234567891011121314151617181920212223242526272829303132333435 |
- <view>
- <lip-sync />
- <auth bindlogin="reloadData" />
- <view class="storeContent">
- <view class="storeSearch">
- <image src="../../static/images/icon/search@2x.png"></image>
- <input wx:if="{{fetcherData.type==31}}" bindinput="inputChange" type="text" placeholder="请输入VR场景名称"
- placeholder-class="placeholderStyle" />
- <input wx:else bindinput="inputChange" type="text" placeholder="请输入直播间名称" placeholder-class="placeholderStyle" />
- </view>
- <view class="searchBtn" bindtap="search">搜索</view>
- </view>
- <view style="height: 84rpx;"></view>
- <view class="resulst" wx:if="{{roomList.length>0}}">
- <view class="storeList" wx:if="{{fetcherData.type==31}}">
- <view wx:for="{{roomList}}" wx:for-index="index">
- <storeItem store="{{item}}" index="{{index}}" bindgotoWV="storeGotoWv">
- </storeItem>
- </view>
- </view>
- <view wx:else>
- <view wx:for="{{roomList}}" wx:key class="house-list">
- <roomItem room="{{item}}" index="{{index}}" bindgotoWV="gotoWV"></roomItem>
- </view>
- </view>
- </view>
- <view class="unbrand" wx:else>
- <image src="/static/images/img_nodata@2x.png"></image>
- <view class="text">暂无相关数据</view>
- </view>
- </view>
|