15 changed files with 261 additions and 119 deletions
@ -1,23 +1,26 @@ |
|||
<!-- bindscrolltolower="scrolltolower" wx:if="{{list.length>0}}" --> |
|||
<scroll-view scroll-y class="scroll-view" > |
|||
<!-- wx:for="{{list}}" --> |
|||
<view class="card flex" wx:key="index"> |
|||
<image src="../../../images/zixun.png" 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">国信</view> |
|||
<view class="status text-28">入住办理中</view> |
|||
<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 style="margin-bottom: 22rpx;">5号楼1单元888南卧</view> |
|||
<view class="date">2028-11-11至2222-22-22</view> |
|||
</view> |
|||
</view> |
|||
<van-divider dashed /> |
|||
<view class="flex flex-sb px-20"> |
|||
<view class="doc"> |
|||
青岛免租金租房合同.docx |
|||
<van-divider dashed /> |
|||
<view class="flex flex-sb px-20"> |
|||
<view class="doc" wx:if="{{item.contractUrl}}"> |
|||
青岛免租金租房合同.docx |
|||
</view> |
|||
<van-button round type="info" plain size="small" color="#f0a652" wx:if="{{item.status === '1' && item.paymentStatus === '0'}}">待支付</van-button> |
|||
<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" bind:change="onChange" /> |
|||
</view> |
|||
<van-button round type="info" plain size="small" color="#d3d3d3">待支付</van-button> |
|||
</view> |
|||
|
|||
</scroll-view> |
|||
<!-- <no-data isShow="{{list.length ===0 || !list}}" ></no-data> --> |
|||
<no-data isShow="{{list.length === 0 || !list}}"></no-data> |
Loading…
Reference in new issue