BUG 26100

This commit is contained in:
aixianling
2021-12-30 19:14:21 +08:00
parent 10379cacae
commit aef2facdc5

View File

@@ -182,10 +182,15 @@ export default {
params: {communityId, size: 999}
}).then(res => {
if (res?.data) {
this.selectList = res.data.records.map(e => ({
...e,
cellName: `${e.communityName + e.buildingNumber}${e.unitNumber}单元`
}))
this.selectList = []
res.data.records.forEach(e => {
for (let i = 0; i < e.unitNumber; i++) {
this.selectList.push({
...e,
cellName: `${e.communityName + e.buildingNumber}${i+1}单元`
})
}
})
}
})
},
@@ -531,7 +536,8 @@ export default {
bottom: 0;
left: 0;
}
.pad-b112{
.pad-b112 {
padding-bottom: 112px;
}
}