描述:预约记录暂无

This commit is contained in:
SelfRidicule 2024-03-28 09:32:11 +08:00
parent a538ca725a
commit 2d8999e3d0
3 changed files with 26 additions and 0 deletions

View File

@ -19,6 +19,7 @@ Page({
* 页面的初始数据
*/
data: {
IMG_NAME: app.IMG_NAME,
meetingRoomId: null,
minTime: null,
maxTime: null,

View File

@ -11,6 +11,11 @@
<view class="status">已预约</view>
</view>
</view>
<!-- 没有优惠券 -->
<view class="noneView" wx:if="{{dataList.length <= 0}}">
<image class="img" src="{{IMG_NAME + '/profile/static/meeting/reservationRecord/none.png'}}" mode="aspectFill"></image>
<view class="describe">暂无记录</view>
</view>
</view>
<!-- 预约时间 -->

View File

@ -72,3 +72,23 @@
font-size: 34rpx;
padding: 20rpx 60rpx;
}
.noneView {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.noneView .img {
margin-top: 400rpx;
width: 207rpx;
height: 200rpx;
}
.noneView .describe {
margin-top: 40rpx;
font-size: 30rpx;
color: #d0d7e2;
}