12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!--pages/zclb/zclb.wxml-->
- <view>
- <view class="searchbar">
- <!-- <view class="input-icon">
- <image src="../images/gzw/ss.png" class="inp-icon1" bindtap="searchTap"></image>
- <input type="text" enterkeyhint="search" confirm-type="search" bindconfirm="searchTap" bindinput="getSearchVal" class="inp" placeholder="请输入资产名称" />
- </view> -->
- <view class="filter" bindtap="show">
- <image class="filter-icon" src="../images/gzw/sx.png"></image>
- <view class="filter-text">筛选</view>
- </view>
- </view>
- <view class="list">
- <view wx:for="{{rentOut}}" wx:for-index="idx" wx:for-item="item" class="item" bind:tap="gotoInfo" data-id="{{item.id}}">
- <image class="item_i" src="{{gzwImgUrl}}{{item.photoUrl[0]}}"></image>
- <view class="item_l">
- <text class="item_tile">{{item.name}}</text>
- <view class="item_time">{{item.reviewTime}}</view>
- <view class="item_tags">
- <view class="item_tag green">房屋</view>
- <view class="item_tag bule">招租中</view>
- </view>
- </view>
-
- </view>
- <view style="width: 100%; height: 1rpx; background-color: #F6F6F6; margin: 30rpx 0 30rpx; "></view>
- <view wx:if="{{index!=totalPage}}" class="more" bind:tap="more">更多资产</view>
- <view style="height: 100rpx;"></view>
- </view>
- </view>
- <!-- 年月日 -->
- <t-date-time-picker
- title="选择日期"
- visible="{{visible}}"
- mode="date"
- defaultValue="{{date}}"
- format="YYYY-MM-DD"
- bindchange="onConfirm"
- bindpick="onColumnChange"
- bindcancel="hidePicker"
- start="{{start}}"
- end="{{end}}"
- />
- <!-- <t-popup visible="{{visible}}" bind:visible-change="onVisibleChange" placement="bottom">
- <view class="block">
- <view class="block_title">
- <view style="text-align: center; line-height: 100rpx; font-weight: bold;">资产筛选</view>
- </view>
- <view style="margin: 0 auto; width: 95%; height: 80rpx; line-height: 80rpx; text-align: left;">资产类别</view>
- <view style="width: 95%; margin: 0 auto; height: 120rpx;">
- <view class="item_tag bule">土地</view>
- <view class="item_tag grey">房屋</view>
- <view class="item_tag grey">招租</view>
- <view class="item_tag grey">不限</view>
- </view>
- <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>
- </view>
- </t-popup> -->
|