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.
32 lines
1.5 KiB
32 lines
1.5 KiB
3 days ago
|
<!-- subpages/mine/mySpace/mySpace.wxml -->
|
||
|
<scroll-view scroll-y class="scroll-view" bindscrolltolower="scrolltolower" wx:if="{{list.length>0}}" enable-back-to-top refresher-enabled="{{true}}" bindrefresherrefresh="onPullDownRefresh" refresher-triggered="{{refreshing}}">
|
||
|
<view class="card" wx:key="id" wx:for="{{list}}">
|
||
|
<view class="flex flex-sb">
|
||
|
<view class="name font-bold">{{item.apartmentName}}</view>
|
||
|
</view>
|
||
|
<van-divider dashed />
|
||
|
<view class="item flex">
|
||
|
<image src="{{item.imgUrls[0]}}" style="width: 200rpx;height:152rpx;margin-right: 16rpx;border-radius: 10rpx;" mode="aspectFill" />
|
||
|
<view class="flex flex-col flex-1">
|
||
|
<view class="space-name font-bold" style="margin:10rpx 0 10rpx 0;">
|
||
|
{{item.name}}
|
||
|
</view>
|
||
|
<view class="address" style="color: #666; font-size: 28rpx; margin-bottom: 10rpx;">
|
||
|
{{item.address}}
|
||
|
</view>
|
||
|
<view class="date" style="color: #333; font-size: 28rpx; margin-bottom: 10rpx;">
|
||
|
{{item.appointmentDate}} {{item.appointTime}}
|
||
|
</view>
|
||
|
<view class="status" style="color:{{item.statusColor}}; font-size: 28rpx;">
|
||
|
{{item.statusText}}
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<!-- 加载更多提示 -->
|
||
|
<view class="loading-more" wx:if="{{loading}}" style="text-align: center; padding: 20rpx; color: #999;">
|
||
|
加载中...
|
||
|
</view>
|
||
|
</scroll-view>
|
||
|
<no-data isShow="{{list.length === 0 && !loading}}"></no-data>
|