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.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(() => {
|
||||||
|
@ -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] || '未知'
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user