业务受理页面 加入备注

This commit is contained in:
java110 2020-12-30 11:32:55 +08:00
parent 0d62fc1869
commit d91e3e2026
3 changed files with 27 additions and 4 deletions

View File

@ -2025,4 +2025,12 @@ a:hover {
.vc-table-border tr th{
border: 1px solid #000000;
}
.fix-width{
width: 60%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
vertical-align: bottom;
}

View File

@ -73,7 +73,10 @@
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label class="col-form-label">业主备注:</label>
<label class="fix-width" :title="simplifyAcceptanceInfo.ownerRemark">{{simplifyAcceptanceInfo.ownerRemark}}</label>
</div>
</div>
</div>
@ -81,8 +84,7 @@
<div class="col-sm-3">
<div class="form-group">
<label class="col-form-label">房屋编号:</label>
<label
class="">{{simplifyAcceptanceInfo.floorNum}}-{{simplifyAcceptanceInfo.unitNum}}-{{simplifyAcceptanceInfo.roomNum}}</label>
<label>{{simplifyAcceptanceInfo.floorNum}}-{{simplifyAcceptanceInfo.unitNum}}-{{simplifyAcceptanceInfo.roomNum}}</label>
</div>
</div>
<div class="col-sm-3">
@ -117,6 +119,12 @@
<label class="">{{simplifyAcceptanceInfo.roomId}}</label>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label class="col-form-label">房屋备注:</label>
<label class="fix-width" :title="simplifyAcceptanceInfo.roomRemark">{{simplifyAcceptanceInfo.roomRemark }}</label>
</div>
</div>
</div>
</div>
</div>

View File

@ -15,6 +15,8 @@
_currentTab: 'simplifyRoomFee',
roomId: '',
ownerId: '',
ownerRemark: '',
roomRemark: '',
name: '',
idCard: '',
link: '',
@ -52,6 +54,7 @@
_initEvent: function () {
vc.on('simplifyAcceptance', 'chooseRoom', function (_room) {
vc.copyObject(_room, $that.simplifyAcceptanceInfo);
$that.simplifyAcceptanceInfo.roomRemark = _room.remark;
$that.simplifyAcceptanceInfo.roomName = _room.floorNum + '栋' + _room.unitNum + '单元' + _room.roomNum;
vc.emit('simplifyRoomFee', 'switch', $that.simplifyAcceptanceInfo)
});
@ -114,6 +117,7 @@
$that.saveTempSearchData();
let _owner = _ownerJson.data;
vc.copyObject(_owner, $that.simplifyAcceptanceInfo);
$that.simplifyAcceptanceInfo.ownerRemark = _owner.remark;
if (!_owner.hasOwnProperty('rooms')) {
return;
}
@ -123,6 +127,7 @@
return;
}
vc.copyObject(_rooms[0], $that.simplifyAcceptanceInfo);
$that.simplifyAcceptanceInfo.roomRemark = _rooms[0].remark;
$that.simplifyAcceptanceInfo.roomName = _rooms[0].floorNum + '栋' + _rooms[0].unitNum + '单元' + _rooms[0].roomNum;
vc.emit('simplifyRoomFee', 'switch', $that.simplifyAcceptanceInfo);
@ -181,7 +186,9 @@
feeCoefficient: '',
stateName: '',
roomName: '',
sex: 0
sex: 0,
ownerRemark: '',
roomRemark: ''
}
}