租房掌柜微信小程序Api以及小程序前端模板
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
1.1 KiB

<cu-custom bgColor="bg-blue" isBack="{{true}}">
<view slot="backText">返回</view>
<view slot="content">到期房源列表</view>
</cu-custom>
<view class="cu-bar bg-white solid-bottom margin-top margin-bottom">
<view class='action'>
<text class='cuIcon-titles text-orange '></text> 我的房源
</view>
</view>
<view class="cu-card article no-card">
<view class="cu-item shadow" wx:for="{{dataList}}">
<view class="content" bindtap="toDetail" data-id="{{item.id}}">
<image src="{{item.thumb}}" mode="aspectFill"></image>
<view class="desc">
<view class="">{{item.name}} #{{item.door_number}}<view class="{{item.expire_days.num > 1 ? 'text-green': 'text-red'}} fr">{{item.expire_days.msg}}</view></view>
<view class="text-gray">{{item.apartment}}</view>
<view>
<view class="cu-tag bg-red light sm fl ">{{item.city}}</view>
<view class="cu-tag bg-green light sm fl ">{{item.area}}</view>
<view class="text-price text-red fr">{{item.rent}}元/月</view>
</view>
</view>
</view>
</view>
</view>