From c6dabb0d4507c9a982246db6a4f127c1cdd0d1ae Mon Sep 17 00:00:00 2001 From: ye1023 <12588209+ye1023@user.noreply.gitee.com> Date: Wed, 29 Jul 2026 13:50:32 +0800 Subject: [PATCH] =?UTF-8?q?yxk-20260729=20=E6=94=B9=E5=96=84=E6=8F=90?= =?UTF-8?q?=E6=A1=88=20Task=5Fimprove005=20=E4=B8=8D=E6=98=BE=E7=A4=BA=20T?= =?UTF-8?q?askHandleInnerContent=E3=80=82=E8=AF=84=E5=A7=94=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E2=80=9C=E6=8A=95=E7=A5=A8=E9=80=9A=E8=BF=87=E2=80=9D?= =?UTF-8?q?=E6=88=96=E2=80=9C=E6=8A=95=E7=A5=A8=E5=8F=8D=E5=AF=B9=E2=80=9D?= =?UTF-8?q?=E5=90=8E=E5=BC=B9=E5=87=BA=E7=A1=AE=E8=AE=A4=E6=A1=86=EF=BC=9B?= =?UTF-8?q?=E7=A1=AE=E8=AE=A4=E5=8D=B3=E9=94=81=E5=AE=9A=E4=B8=AA=E4=BA=BA?= =?UTF-8?q?=E6=8A=95=E7=A5=A8=E5=B9=B6=E7=9B=B4=E6=8E=A5=E5=AE=8C=E6=88=90?= =?UTF-8?q?=E5=BD=93=E5=89=8D=E6=B5=81=E7=A8=8B=E4=BB=BB=E5=8A=A1=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/ImprovementProposalBPMForm.vue | 64 +++++++++++++++++-- 1 file changed, 58 insertions(+), 6 deletions(-) diff --git a/src/views/gh/improvementProposal/components/ImprovementProposalBPMForm.vue b/src/views/gh/improvementProposal/components/ImprovementProposalBPMForm.vue index 6aaae70..606c543 100644 --- a/src/views/gh/improvementProposal/components/ImprovementProposalBPMForm.vue +++ b/src/views/gh/improvementProposal/components/ImprovementProposalBPMForm.vue @@ -86,12 +86,15 @@ @@ -516,6 +519,44 @@ margin-bottom: 16px; } + .vote-action-panel { + display: flex; + flex-direction: column; + align-items: center; + width: 100%; + } + + .vote-action-form-item { + :deep(.ant-form-item-label) { + padding-bottom: 8px; + text-align: center; + } + + :deep(.ant-form-item-control-input-content) { + width: 100%; + } + } + + .vote-action-buttons { + display: grid; + grid-template-columns: repeat(2, minmax(160px, 1fr)); + gap: 16px; + width: min(100%, 352px); + } + + .vote-action-button { + min-width: 160px; + height: 52px; + font-size: 16px; + } + + .vote-action-status { + margin-top: 10px; + color: #64748b; + font-size: 14px; + text-align: center; + } + .vote-member-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); @@ -551,4 +592,15 @@ grid-template-columns: 1fr; } } + + @media (max-width: 576px) { + .vote-action-buttons { + grid-template-columns: 1fr; + width: min(100%, 280px); + } + + .vote-action-button { + width: 100%; + } + }