描述:信息修改

This commit is contained in:
SelfRidicule 2024-03-29 14:38:28 +08:00
parent 8d35d9d876
commit 128e8817ea
3 changed files with 16 additions and 2 deletions

View File

@ -1,14 +1,14 @@
<view class="containerView public">
<view class="itemView" wx:for="{{dataList}}" wx:for-item="item" wx:key="*this" bind:tap="goDetail" data-id="{{item.id}}">
<view class="headView">
<view class="number">{{item.reservationNumber}}</view>
<view class="number">{{item.title}}</view>
<view class="status" style="color: {{item.statusColor}};">{{item.statusName}}</view>
</view>
<view class="contentView">
<image class="img" src="{{IMG_NAME + item.indoorPicUrl}}" mode="aspectFill"></image>
<view class="msgView">
<view class="title">{{item.capacityNum}}人间 | {{item.roomName}} | {{item.buildingName}}</view>
<view class="name">{{item.title}}</view>
<view class="name">预约人: {{item.createBy}}</view>
<view class="time">{{item.timeSlot}}</view>
</view>
</view>

View File

@ -17,7 +17,14 @@
}
.itemView .headView .number {
flex: 1;
margin-right: 30rpx;
font-size: 26rpx;
text-overflow: ellipsis;
overflow: hidden;
word-break: break-all;
white-space: nowrap;
}
.itemView .headView .status {

View File

@ -17,7 +17,14 @@
}
.itemView .headView .number {
flex: 1;
margin-right: 30rpx;
font-size: 26rpx;
text-overflow: ellipsis;
overflow: hidden;
word-break: break-all;
white-space: nowrap;
}
.itemView .headView .status {