Merge branch 'zqy-mst' of http://1.14.121.39:8430/gitadmin/eden-web into zqy-mst
This commit is contained in:
commit
9c342c61ab
@ -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(() => {
|
||||
|
@ -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] || '未知'
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user