From 11b57568458b6e4ff710ad42a125969510e906c0 Mon Sep 17 00:00:00 2001 From: Kasi Date: Wed, 28 May 2025 10:37:52 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20=EC=9D=B8=EC=A0=9C=EC=84=B8=20index?= =?UTF-8?q?=EC=9C=84=EC=B9=98=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/app/ContractInsert.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/app/ContractInsert.vue b/src/pages/app/ContractInsert.vue index 08afb1c..b138529 100644 --- a/src/pages/app/ContractInsert.vue +++ b/src/pages/app/ContractInsert.vue @@ -179,9 +179,9 @@ const fileInputs = ref([ { file: null, description: '소액수의계약서' }, { file: null, description: '수의계약 체결 제한 여부 확인서' }, { file: null, description: '퇴직자 재직여부 확인서' }, - { file: null, description: '인지세 납부확인서' }, { file: null, description: '정부권장정책 이행 구매 검토서' }, - { file: null, description: '기타' } + { file: null, description: '기타' }, + { file: null, description: '인지세 납부확인서' }, ]) const saveContOne = async () => { @@ -191,7 +191,7 @@ const saveContOne = async () => { const amt = Number(String(completedPriceDataParams.contAmt).replace(/[^0-9]/g, '')) if (amt >= 10000000) { - const injiFile = pbAtts.value[4] + const injiFile = pbAtts.value[6] if (!injiFile || !injiFile.logiFnm) { notyf.error('계약금액이 1,000만원 이상일 경우 인지세 납부확인서 첨부가 필수입니다.') loading.value = false