diff --git a/src/pages/app/ApprovalManagement.vue b/src/pages/app/ApprovalManagement.vue index 9896096..71d65e7 100644 --- a/src/pages/app/ApprovalManagement.vue +++ b/src/pages/app/ApprovalManagement.vue @@ -69,8 +69,8 @@ function formatRegDt(value) { } async function getIntegratedApprovalList() { - const today = new Date() - searchParamsList.regSdt = new Date().setDate(today.getDate() - 30) + // const today = new Date() + // searchParamsList.regSdt = new Date().setDate(today.getDate() - 30) const approvalParams = { title: params.title, diff --git a/src/pages/app/contractManagement.vue b/src/pages/app/contractManagement.vue index 16b04fe..24289cd 100644 --- a/src/pages/app/contractManagement.vue +++ b/src/pages/app/contractManagement.vue @@ -24,8 +24,8 @@ onBeforeMount(async () => { }) async function getContractListView() { - const today = new Date() - params.signSdt = new Date().setDate(today.getDate() - 30) + // const today = new Date() + // params.signSdt = new Date().setDate(today.getDate() - 30) const contractParams = { params:{ @@ -124,6 +124,14 @@ function getBilling(row){ } //detail로 수정하기 현재 : 대금지급전 } +const isBizNoEditable = ref(false) + +function openEditForm(arg) { + // 수정폼 오픈 시 + isBizNoEditable.value = false + // ...데이터 매핑 등 +} + watch(currentPage, (newParams) => { currentPage.value = newParams searchContract(currentPage.value) @@ -277,7 +285,7 @@ watch(currentPage, (newParams) => {