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} params: {communityId, size: 999}
}).then(res => { }).then(res => {
if (res?.data) { if (res?.data) {
this.selectList = res.data.records.map(e => ({ this.selectList = []
...e, res.data.records.forEach(e => {
cellName: `${e.communityName + e.buildingNumber}${e.unitNumber}单元` 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; bottom: 0;
left: 0; left: 0;
} }
.pad-b112{
.pad-b112 {
padding-bottom: 112px; padding-bottom: 112px;
} }
} }