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

View File

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