From aef2facdc59d4e84643fbb12ae79ae6d5d02d48d Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 30 Dec 2021 19:14:21 +0800 Subject: [PATCH 1/2] BUG 26100 --- src/apps/AppBuilding/detail.vue | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/apps/AppBuilding/detail.vue b/src/apps/AppBuilding/detail.vue index 572ada70..8dd90f52 100644 --- a/src/apps/AppBuilding/detail.vue +++ b/src/apps/AppBuilding/detail.vue @@ -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; } } From 4f149cfa3d94d3ab4a1e79e506f534f8f031fd7b Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 30 Dec 2021 19:16:54 +0800 Subject: [PATCH 2/2] BUG 26232 --- src/components/AiAreaPicker.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/AiAreaPicker.vue b/src/components/AiAreaPicker.vue index db6b96fb..9ddf40ee 100644 --- a/src/components/AiAreaPicker.vue +++ b/src/components/AiAreaPicker.vue @@ -298,7 +298,7 @@ export default { width: 100vw; display: flex; text-align: center; - height: 88px; + height: 112px; font-size: 34px; font-family: PingFangSC-Medium, PingFang SC; font-weight: 500; @@ -307,7 +307,7 @@ export default { & > div { padding: 0 92px; - line-height: 88px; + line-height: 112px; border-top: 1px solid #A0C0FF; &.primary {