From 9aa7c9f51ea8a171ca6a90e984b700960a5edfb3 Mon Sep 17 00:00:00 2001 From: KG Date: Thu, 29 May 2025 07:51:21 +0900 Subject: [PATCH 1/3] =?UTF-8?q?func=20:=20=EA=B3=84=EC=95=BD=EA=B4=80?= =?UTF-8?q?=EB=A6=ACpage=20-=20=ED=85=8C=EC=9D=B4=EB=B8=94=EC=BB=AC?= =?UTF-8?q?=EB=9F=BC=20=EB=8C=80=EA=B8=88=EC=B2=AD=EA=B5=AC=20=EC=A1=B0?= =?UTF-8?q?=EA=B1=B4=EB=B6=80=20=ED=99=9C=EC=84=B1=ED=99=94=20fix=20:=20na?= =?UTF-8?q?vbar=20-=20=EC=A0=84=ED=91=9C=EA=B4=80=EB=A6=AC=20=EC=A3=BC?= =?UTF-8?q?=EC=84=9D=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layouts/navbar.vue | 14 +++++++------- src/pages/app/contractManagement.vue | 29 +++++++++++++++++++++++++--- 2 files changed, 33 insertions(+), 10 deletions(-) diff --git a/src/layouts/navbar.vue b/src/layouts/navbar.vue index e1d59f2..3414672 100644 --- a/src/layouts/navbar.vue +++ b/src/layouts/navbar.vue @@ -18,13 +18,13 @@ const links = ref([ label: '계약관리', icon: '', }, - { - id: 'document', - type: 'link', - to: '/app/documentManagement', - label: '전표관리', - icon: '', - }, + // { + // id: 'document', + // type: 'link', + // to: '/app/documentManagement', + // label: '전표관리', + // icon: '', + // }, { id: 'payment', type: 'link', diff --git a/src/pages/app/contractManagement.vue b/src/pages/app/contractManagement.vue index 683e87a..5055495 100644 --- a/src/pages/app/contractManagement.vue +++ b/src/pages/app/contractManagement.vue @@ -49,7 +49,7 @@ const params = reactive({ { key: 'contAmt', label: '계약금액', format: formatCurrency }, { key: 'contNo', label: '계약번호' }, { key: 'signDt', label: '계약체결일' }, - { key: 'charge', label: '대금청구' }, + { key: 'charge', label: '대금청구', cellClass: 'is-justify-content-center' }, { key: 'contStat', label: '계약상태' }, ], }) @@ -182,7 +182,7 @@ function getContractDetail(){
- + > + + + + +
From bdf7b023cb83c7b39c8d3feeed8a6f5ed726dc79 Mon Sep 17 00:00:00 2001 From: Kasi Date: Thu, 29 May 2025 10:06:26 +0900 Subject: [PATCH 2/3] =?UTF-8?q?fix=20:=20=EA=B0=80=EA=B2=A9=EC=A1=B0?= =?UTF-8?q?=EC=82=AC=20=EC=83=81=EC=84=B8=ED=8F=BC=20=20-=20=EC=A0=84?= =?UTF-8?q?=EC=86=A1=EC=97=AC=EB=B6=80:=20=EB=AF=B8=EC=A0=84=EC=86=A1=20?= =?UTF-8?q?=EB=B2=84=ED=8A=BC=20->=20=EC=8B=A4=ED=8C=A8=20=ED=85=8D?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20=20-=20=EC=8A=A4=ED=83=80=EC=9D=BC=20?= =?UTF-8?q?=EC=A0=95=EB=A0=AC=EC=88=98=EC=A0=95=20=20-=20=EC=9E=AC?= =?UTF-8?q?=EC=A0=84=EC=86=A1=EC=97=AC=EB=B6=80=20=EC=A1=B0=EA=B1=B4?= =?UTF-8?q?=EC=B6=94=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 @@