From bdf7b023cb83c7b39c8d3feeed8a6f5ed726dc79 Mon Sep 17 00:00:00 2001 From: Kasi Date: Thu, 29 May 2025 10:06:26 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20=EA=B0=80=EA=B2=A9=EC=A1=B0=EC=82=AC?= =?UTF-8?q?=20=EC=83=81=EC=84=B8=ED=8F=BC=20=20-=20=EC=A0=84=EC=86=A1?= =?UTF-8?q?=EC=97=AC=EB=B6=80:=20=EB=AF=B8=EC=A0=84=EC=86=A1=20=EB=B2=84?= =?UTF-8?q?=ED=8A=BC=20->=20=EC=8B=A4=ED=8C=A8=20=ED=85=8D=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=20=20-=20=EC=8A=A4=ED=83=80=EC=9D=BC=20=EC=A0=95?= =?UTF-8?q?=EB=A0=AC=EC=88=98=EC=A0=95=20=20-=20=EC=9E=AC=EC=A0=84?= =?UTF-8?q?=EC=86=A1=EC=97=AC=EB=B6=80=20=EC=A1=B0=EA=B1=B4=EC=B6=94?= =?UTF-8?q?=EA=B0=80=20(0200)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/app/DocumentManagement.vue | 8 +- src/pages/app/contractUpdate.vue | 262 ++++++++++++++++++--------- src/pages/app/priceDetail.vue | 18 +- src/pages/app/priceManagement.vue | 9 + src/service/contractApi.ts | 6 +- src/service/signDocApi.ts | 102 +++++++++++ 6 files changed, 297 insertions(+), 108 deletions(-) create mode 100644 src/service/signDocApi.ts diff --git a/src/pages/app/DocumentManagement.vue b/src/pages/app/DocumentManagement.vue index f6cbf45..f2d782b 100644 --- a/src/pages/app/DocumentManagement.vue +++ b/src/pages/app/DocumentManagement.vue @@ -354,6 +354,10 @@ function onInput(event) { } +.button.v-button { + padding: 0px 0px; +} + .bottom-button { text-align: center; button { @@ -362,6 +366,7 @@ function onInput(event) { font-weight: bold; border-color: var(--primary); color: white; + padding: 0.5rem 1rem !important; } } button:nth-child(2) { @@ -375,9 +380,6 @@ button:nth-child(3) { margin: 0px 0px; } -.button.v-button { - padding: 0px 0px; -} .disabled-button { //opacity: 0.5; diff --git a/src/pages/app/contractUpdate.vue b/src/pages/app/contractUpdate.vue index 2b71fa3..6694f6f 100644 --- a/src/pages/app/contractUpdate.vue +++ b/src/pages/app/contractUpdate.vue @@ -1,17 +1,25 @@