优化1.6 拆分费用bug

This commit is contained in:
wuxw 2024-01-10 15:45:13 +08:00
parent f1c5810fb2
commit 8834fb9167

View File

@ -48,9 +48,9 @@
if (room.hasOwnProperty('roomName') && room.roomName) { if (room.hasOwnProperty('roomName') && room.roomName) {
$that.roomCreateFeeAddInfo.locationTypeCdName = room.roomName; $that.roomCreateFeeAddInfo.locationTypeCdName = room.roomName;
} }
$that.roomCreateFeeAddInfo.roomType = room.roomType;
if (room.roomType == '2020602') { if (room.roomType == '2020602') {
$that.roomCreateFeeAddInfo.locationTypeCdName = room.floorNum + '-' + room.roomNum + '(' + room.ownerName + ')'; $that.roomCreateFeeAddInfo.locationTypeCdName = room.floorNum + '-' + room.roomNum + '(' + room.ownerName + ')';
$that.roomCreateFeeAddInfo.roomType = room.roomType;
} }
$('#roomCreateFeeAddModel').modal('show'); $('#roomCreateFeeAddModel').modal('show');
}); });