BUG 26100
This commit is contained in:
@@ -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 = []
|
||||||
|
res.data.records.forEach(e => {
|
||||||
|
for (let i = 0; i < e.unitNumber; i++) {
|
||||||
|
this.selectList.push({
|
||||||
...e,
|
...e,
|
||||||
cellName: `${e.communityName + e.buildingNumber}栋${e.unitNumber}单元`
|
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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user