index.wxml 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!--pages/meeting/index/index.wxml-->
  2. <view class="page">
  3. <!-- 搜索项 -->
  4. <view class="search-box">
  5. <view class="search border-radius-20">
  6. <van-icon name="search" class="" />
  7. <input type="index" value="{{searchValue}}" placeholder="搜索会议室" bindblur="getSearch" placeholder-class="pl-css" />
  8. </view>
  9. </view>
  10. <view class="contenr">
  11. <view class="item border-radius-20" wx:for="{{meetingList}}" wx:key="index" bindtap="goto" data-item="{{item}}">
  12. <image src="/static/img/room-index-bg.png" mode="" />
  13. <view class="rooom-name ">
  14. <van-icon name="wap-home" />
  15. <text> {{item.meetingName}}</text>
  16. </view>
  17. <view>
  18. <van-icon name="location" />
  19. <text>{{item.meetingAddress}}</text>
  20. </view>
  21. <view class="green">
  22. <van-icon name="map-marked" />
  23. <text>{{item.canAppointmentStartTime}}~{{item.canAppointmentEndTime}}内可预约</text>
  24. <van-icon class="m-l" name="map-marked" />
  25. <text>共有{{item.seatNum}}个座位</text>
  26. </view>
  27. <!-- <view class="go-subscribe">
  28. 预约
  29. <van-icon name="arrow" />
  30. </view> -->
  31. </view>
  32. <tailTip total="{{total}}" pageNum="{{searchData.pageNum}}" loadding="{{false}}"></tailTip>
  33. </view>
  34. </view>