租房掌柜微信小程序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.
 
 
 
 
 
 

41 lines
1.4 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>
<form bindsubmit="formSubmit" bindreset="formReset">
<view class="cu-bar search padding-bottom">
<view class="search-form">
<text class="cuIcon-search"></text>
<input type="text" name="search" placeholder="请输入小区名称" confirm-type="search"></input>
</view>
<view class="action">
<button class="cu-btn bg-green shadow-blur" form-type="submit">搜索</button>
</view>
</view>
</form>
<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>
<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>