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.
25 lines
1.7 KiB
25 lines
1.7 KiB
3 months ago
|
<scroll-view scroll-y class="scroll-view" bindscrolltolower="scrolltolower" wx:if="{{list.length>0}}">
|
||
|
<view class="card " wx:key="index" wx:for="{{list}}">
|
||
|
<view class="item flex">
|
||
|
<image src="{{item.imageUrl}}" style="width: 200rpx;height:152rpx;margin-right: 16rpx;border-radius: 10rpx;" mode="" />
|
||
|
<view class="flex flex-col flex-1">
|
||
|
<view class="flex flex-sb">
|
||
|
<view class="name font-bold">{{item.apartmentName}}</view>
|
||
|
<view class="status text-28" style="color:{{item.status === '1'?'#ee952f':item.status === '4'?'#1cc9cd':item.status === '5'?'#181c18':''}}">{{item.status === '1'?'入住办理中':item.status === '4'?'入住中':item.status === '5'?'已退房':''}}</view>
|
||
|
</view>
|
||
|
<view style="margin-bottom: 22rpx;">{{item.buildingName}}-{{item.unitName}}-{{item.houseName}}-{{item.roomType}}</view>
|
||
|
<view class="date">{{item.inDate}}至{{item.outDate}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<van-divider dashed />
|
||
|
<view class="flex flex-sb px-20">
|
||
|
<view class="doc" wx:if="{{item.contractUrl}}">
|
||
|
青岛免租金租房合同.docx
|
||
|
</view>
|
||
|
<van-button round plain size="small" bind:click="toEvaluate" wx:if="{{(item.status === '4' || item.status === '5' || item.status === '6') && item.evaluateLevel === null}}" data-item="{{item}}">去评价</van-button>
|
||
|
<van-rate wx:if="{{item.evaluateLevel}}" value="{{ item.evaluateLevel }}" disabled="{{true}}" size="{{ 25 }}" color="#13c2c2" void-icon="star" void-color="#eee"/>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
</scroll-view>
|
||
|
<no-data isShow="{{list.length === 0 || !list}}"></no-data>
|