Compare commits

..

No commits in common. "81153b49981f4c44d44acd6930ebf97dd2b4755c" and "f2b1115bd99ddabc45a403361af87b40241864f4" have entirely different histories.

2 changed files with 21 additions and 16 deletions

View File

@ -662,7 +662,16 @@ export default {
this.getAdjustmentList() this.getAdjustmentList()
// //
this.roomList = this.billDetail.rooms this.roomList = [
{
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.accblAmt.toFixed(2) }} {{ scope.row.price.toFixed(2) }}
</template> </template>
</el-table-column> </el-table-column>
@ -2483,13 +2483,11 @@ export default {
/** 获取清算状态类型 */ /** 获取清算状态类型 */
getClearStatusType(status) { getClearStatusType(status) {
const statusMap = { const statusMap = {
'1': 'error', '1': 'info', //
'2': 'success', '2': 'warning', //
'3': 'success', '3': 'success', //
'4': 'warning', '4': 'danger', //
'5': 'warning', '5': '' //
'6': 'info',
'7': 'success',
} }
return statusMap[status] || '' return statusMap[status] || ''
}, },
@ -2497,13 +2495,11 @@ 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] || '未知'
}, },