fix: 미사용 UI 주석처리 및 불필요코드 정리

This commit is contained in:
Kasi
2025-06-05 14:24:34 +09:00
parent 068bab4e0f
commit 37ec33d865
2 changed files with 45 additions and 70 deletions

View File

@@ -275,56 +275,56 @@ const onPrcsFileDownload = async (contNo: string, fileOrd: number, logiFnm: stri
</span> </span>
</td> </td>
<td> <td>
<VButton <!-- <VButton-->
color="primary" <!-- color="primary"-->
@click="registerFormOpen = true" <!-- @click="registerFormOpen = true"-->
> <!-- >-->
가격조사 가져오기 <!-- 가격조사 가져오기-->
</VButton> <!-- </VButton>-->
<VModal <!-- <VModal-->
is="form" <!-- is="form"-->
:open="registerFormOpen" <!-- :open="registerFormOpen"-->
title="계약관리 등록" <!-- title="계약관리 등록"-->
size="contract-big" <!-- size="contract-big"-->
actions="right" <!-- actions="right"-->
> <!-- >-->
<template #content> <!-- <template #content>-->
<div class="modal-form"> <!-- <div class="modal-form">-->
<ComVFlexTable <!-- <ComVFlexTable-->
:data="data.completedPriceSearchData" <!-- :data="data.completedPriceSearchData"-->
:columns="params.modalColumn" <!-- :columns="params.modalColumn"-->
:compact="true" <!-- :compact="true"-->
:separators="true" <!-- :separators="true"-->
@row-click="handlePriceRowClick" <!-- @row-click="handlePriceRowClick"-->
clickable <!-- clickable-->
/> <!-- />-->
</div> <!-- </div>-->
</template> <!-- </template>-->
</VModal> <!-- </VModal>-->
</td> </td>
<td> <td>
<VField class="is-flex"> <!-- <VField class="is-flex">-->
<VControl raw subcontrol> <!-- <VControl raw subcontrol>-->
<VCheckbox <!-- <VCheckbox-->
label="가격조사여부" <!-- label="가격조사여부"-->
color="info" <!-- color="info"-->
v-model="priceSeachCheckBoxStatus" <!-- v-model="priceSeachCheckBoxStatus"-->
/> <!-- />-->
</VControl> <!-- </VControl>-->
</VField> <!-- </VField>-->
</td> </td>
<td colspan="3"> <td colspan="3">
<div class="column is-fullhd"> <div class="column is-fullhd">
<VField> <!-- <VField>-->
<VControl> <!-- <VControl>-->
<input <!-- <input-->
v-model="completedPriceDataParams.reason" <!-- v-model="completedPriceDataParams.reason"-->
class="input custom-text-filter" <!-- class="input custom-text-filter"-->
placeholder="가격조사 안했을 시 예외 사유 입력(필수)" <!-- placeholder="가격조사 안했을 시 예외 사유 입력(필수)"-->
disabled <!-- disabled-->
> <!-- >-->
</VControl> <!-- </VControl>-->
</VField> <!-- </VField>-->
</div> </div>
</td> </td>
</tr> </tr>
@@ -410,22 +410,6 @@ const onPrcsFileDownload = async (contNo: string, fileOrd: number, logiFnm: stri
> >
</VButton> </VButton>
<VModal
actions="center"
title="계약금액"
>
<template #content>
<VPlaceholderSection
title="Go Premium"
subtitle="Unlock more features and business tools by going premium"
/>
</template>
<template #action>
<VButton color="primary" raised>
등록
</VButton>
</template>
</VModal>
</td> </td>
<td colspan="2"> <td colspan="2">
<VField> <VField>

View File

@@ -37,7 +37,6 @@ async function getContractListView() {
} }
const result = await getContractList(contractParams) const result = await getContractList(contractParams)
data.contractData = result.content data.contractData = result.content
console.log('result', data.contractData)
//페이지 관련 값 설정 //페이지 관련 값 설정
totalItems.value = result.totalElements totalItems.value = result.totalElements
totalPages.value = result.totalPages totalPages.value = result.totalPages
@@ -124,14 +123,6 @@ function getBilling(row){
} //detail로 수정하기 현재 : 대금지급전 } //detail로 수정하기 현재 : 대금지급전
} }
const isBizNoEditable = ref(false)
function openEditForm(arg) {
// 수정폼 오픈 시
isBizNoEditable.value = false
// ...데이터 매핑 등
}
watch(currentPage, (newParams) => { watch(currentPage, (newParams) => {
currentPage.value = newParams currentPage.value = newParams
searchContract(currentPage.value) searchContract(currentPage.value)