com : 결재함 상세 내용 계약관리 대금청구 - 대금지급중 처리 이후로도 사용중

This commit is contained in:
Yesol Choi
2025-06-04 19:46:53 +09:00
parent c7336b73a6
commit a5bee2a1c6

View File

@@ -9,7 +9,12 @@ const props = defineProps<{apprNo : string}>();
console.log(props.apprNo) console.log(props.apprNo)
onBeforeMount(async ()=>{ onBeforeMount(async ()=>{
const result = await getSlipDetail(props.apprNo) let result;
if(history.state.key){
result = await getSlipDetail(history.state.key)
}else if(props.apprNo){
result = await getSlipDetail(props.apprNo)
}
getDetailList(result) getDetailList(result)
}) })