租房掌柜微信小程序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-list menu-avatar" wx:for="{{houseList}}">
<view class="cu-item" bindtap="toDetail" data-id="{{item.id}}">
<view class="cu-avatar round lg" style="background-image:url({{item.thumb}});"></view>
<view class="content">
<view class="text-grey">{{item.city}}{{item.area}}【{{item.name}}】</view>
<view class="text-gray text-sm flex">
<text class="text-cut">
<text></text> #{{item.room_number}} / {{item.measure}}㎡ / {{item.rent}}元/月
</text>
</view>
</view>
<view class="action" style="width:auto;">
<view class="cu-tag round ">{{item.door_number}}室</view>
<view class="text-grey text-sm"><view class="{{item.days.num > 1 ? 'text-green': 'text-red'}} fr">{{item.days.msg}}</view></view>
</view>
</view>
</view>