1234567891011121314151617181920212223242526272829303132333435363738 |
- <view>
- <!-- <lip-sync /> -->
- <auth bindlogin="reloadData" />
- <view class="storeContent">
- <view class="tab-header">
- <view class="un-start">
- <text>待开始</text>
- </view>
- <view class="has-start"> <text>已开始</text></view>
- </view>
- <view class="search-container">
- <view class="storeSearch">
- <image src="../../static/images/icon/search@2x.png"></image>
- <input wx:if="{{fetcherData.type==31}}" bindconfirm="search" bindinput="inputChange" type="text" placeholder="请输入VR场景名称" placeholder-class="placeholderStyle" />
- <input wx:else bindconfirm="search" bindinput="inputChange" type="text" placeholder="请输入场景名称" placeholder-class="placeholderStyle" />
- </view>
- <view class="searchBtn" bindtap="search">搜索</view>
- </view>
- </view>
- <view class="addRoom" bindtap="addRoom">+
- </view>
- <view class="result" wx:if="{{roomList.length > 0}}">
- <view>
- <view wx:for="{{roomList}}" wx:key class="house-list">
- <partyItem room="{{item}}" index="{{index}}" bindgotoWV="gotoWV"></partyItem>
- </view>
- </view>
- </view>
- <view class="unbrand" wx:else>
- <image src="/static/images/img_nodata@2x.png"></image>
- <view class="text">暂无相关数据</view>
- </view>
- </view>
|