diff --git a/pc/src/views/finance/billList/components/BillDetail.vue b/pc/src/views/finance/billList/components/BillDetail.vue index 06b5ee4..9de1202 100644 --- a/pc/src/views/finance/billList/components/BillDetail.vue +++ b/pc/src/views/finance/billList/components/BillDetail.vue @@ -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(() => { diff --git a/pc/src/views/finance/chargeStandard/index.vue b/pc/src/views/finance/chargeStandard/index.vue index ddfc255..f882082 100644 --- a/pc/src/views/finance/chargeStandard/index.vue +++ b/pc/src/views/finance/chargeStandard/index.vue @@ -850,7 +850,7 @@ @@ -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] || '未知' },