store.wxml 802 B

123456789101112131415161718192021
  1. <view>
  2. <view class="storeContent">
  3. <view class="storeSearch">
  4. <image src="../../static/images/icon/search@2x.png"></image>
  5. <input type="text" disabled="true" placeholder='请输入VR场景名称' data-type="21" bindtap="toSearch"
  6. placeholder-class="placeholderStyle" />
  7. </view>
  8. <!-- <view class="searchBtn">搜索</view> -->
  9. </view>
  10. <view style="height: 84rpx;"></view>
  11. <view class="storeList" wx:if="{{storeList.length>0}}">
  12. <view wx:key="index" wx:for="{{storeList}}" wx:for-index="index">
  13. <storeItem store="{{item}}" index="{{index}}" bindgotoWV="gotoWV"></storeItem>
  14. </view>
  15. </view>
  16. <view class="unbrand" wx:else>
  17. <image src="/static/images/img_nodata@2x.png"></image>
  18. <view class="text">暂无相关数据</view>
  19. </view>
  20. </view>