Merge branch 'zqy-mst' of http://1.14.121.39:8430/gitadmin/eden-web into zqy-mst

This commit is contained in:
zhongchangyuyu 2025-04-25 19:56:01 +08:00
commit 9c342c61ab
2 changed files with 16 additions and 21 deletions

View File

@ -662,16 +662,7 @@ export default {
this.getAdjustmentList()
//
this.roomList = [
{
roomId: 'R001',
roomNumber: this.billDetail.roomNumber || '',
floorName: '1层',
buildingName: '智慧园区A栋',
projectName: this.billDetail.projectName || '',
rentArea: this.billDetail.rentArea || 0
}
]
this.roomList = this.billDetail.rooms
this.loading = false
}).catch(() => {

View File

@ -850,7 +850,7 @@
</el-table-column>
<el-table-column prop="price" label="账单金额" min-width="80" align="center">
<template slot-scope="scope">
{{ scope.row.price.toFixed(2) }}
{{ scope.row.accblAmt.toFixed(2) }}
</template>
</el-table-column>
@ -2483,11 +2483,13 @@ export default {
/** 获取清算状态类型 */
getClearStatusType(status) {
const statusMap = {
'1': 'info', //
'2': 'warning', //
'3': 'success', //
'4': 'danger', //
'5': '' //
'1': 'error',
'2': 'success',
'3': 'success',
'4': 'warning',
'5': 'warning',
'6': 'info',
'7': 'success',
}
return statusMap[status] || ''
},
@ -2495,11 +2497,13 @@ export default {
/** 获取清算状态名称 */
getClearStatusName(status) {
const statusMap = {
'1': '未开始',
'2': '进行中',
'3': '已完成',
'4': '已逾期',
'5': '待处理'
'1': '未付款',
'2': '已结清',
'3': '部分结清',
'4': '待退款',
'5': '待收款',
'6': '对账确认中',
'7': '已付款',
}
return statusMap[status] || '未知'
},