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

View File

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