Browse Source

接口迭代,退房时间

master
wangyx 2 weeks ago
parent
commit
c2add83b09
  1. 2
      api/index.js
  2. 3
      subpages/mine/checkInRecord/checkInRecord.wxml

2
api/index.js

@ -9,7 +9,7 @@ export function getPolicyInfo(id) {
}
// 选房记录
export function chooseRoomRec(pamars) {
return fly.get(`/bysmp/chooseRoomRec/page`,pamars)
return fly.get(`/bysmp/chooseRoomRec/pageCheckIn`, pamars);
}
// 【退房确认】查看进行中的退房信息
export function getProcessingCheckOutInfo(pamars) {

3
subpages/mine/checkInRecord/checkInRecord.wxml

@ -8,7 +8,8 @@
<view class="status text-28" style="color:{{item.status === '1'?'#ee952f':item.status === '4'?'#1cc9cd':item.status === '5'?'#181c18':''}}">{{item.status === '1'?'已入住':item.status === '3'?'已过期':item.status === '4'?'已取消':item.status === '5'?'已退房':item.status === '6'?'已撤销资格':item.status === '7'?'审核不通过':''}}</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 class="date" wx:if="{{item.status==='1'}}">{{item.inDate}} 至 {{item.outDate}}</view>
<view class="date" wx:if="{{item.status==='5'}}">{{item.inDate}} 至 {{item.actualOutDate}}</view>
</view>
</view>
<van-divider dashed />

Loading…
Cancel
Save