zclb.wxml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!--pages/zclb/zclb.wxml-->
  2. <view>
  3. <view class="searchbar">
  4. <!-- <view class="input-icon">
  5. <image src="../images/gzw/ss.png" class="inp-icon1" bindtap="searchTap"></image>
  6. <input type="text" enterkeyhint="search" confirm-type="search" bindconfirm="searchTap" bindinput="getSearchVal" class="inp" placeholder="请输入资产名称" />
  7. </view> -->
  8. <view class="filter" bindtap="show">
  9. <image class="filter-icon" src="../images/gzw/sx.png"></image>
  10. <view class="filter-text">筛选</view>
  11. </view>
  12. </view>
  13. <view class="list">
  14. <view wx:for="{{rentOut}}" wx:for-index="idx" wx:for-item="item" class="item" bind:tap="gotoInfo" data-id="{{item.id}}">
  15. <image class="item_i" src="{{gzwImgUrl}}{{item.photoUrl[0]}}"></image>
  16. <view class="item_l">
  17. <text class="item_tile">{{item.name}}</text>
  18. <view class="item_time">{{item.reviewTime}}</view>
  19. <view class="item_tags">
  20. <view class="item_tag green">房屋</view>
  21. <view class="item_tag bule">招租中</view>
  22. </view>
  23. </view>
  24. </view>
  25. <view style="width: 100%; height: 1rpx; background-color: #F6F6F6; margin: 30rpx 0 30rpx; "></view>
  26. <view wx:if="{{index!=totalPage}}" class="more" bind:tap="more">更多资产</view>
  27. <view style="height: 100rpx;"></view>
  28. </view>
  29. </view>
  30. <!-- 年月日 -->
  31. <t-date-time-picker
  32. title="选择日期"
  33. visible="{{visible}}"
  34. mode="date"
  35. defaultValue="{{date}}"
  36. format="YYYY-MM-DD"
  37. bindchange="onConfirm"
  38. bindpick="onColumnChange"
  39. bindcancel="hidePicker"
  40. start="{{start}}"
  41. end="{{end}}"
  42. />
  43. <!-- <t-popup visible="{{visible}}" bind:visible-change="onVisibleChange" placement="bottom">
  44. <view class="block">
  45. <view class="block_title">
  46. <view style="text-align: center; line-height: 100rpx; font-weight: bold;">资产筛选</view>
  47. </view>
  48. <view style="margin: 0 auto; width: 95%; height: 80rpx; line-height: 80rpx; text-align: left;">资产类别</view>
  49. <view style="width: 95%; margin: 0 auto; height: 120rpx;">
  50. <view class="item_tag bule">土地</view>
  51. <view class="item_tag grey">房屋</view>
  52. <view class="item_tag grey">招租</view>
  53. <view class="item_tag grey">不限</view>
  54. </view>
  55. <view style=" width: 95%; margin: 200rpx auto 200rpx; height: 100rpx; text-align: center; line-height: 100rpx; font-weight: bold; background-color: #138DF7; color: #fff; border-radius: 20rpx;">确认</view>
  56. </view>
  57. </t-popup> -->