mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-19 19:25:11 +09:00
fix: 미사용 UI 주석처리 및 불필요코드 정리
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user