mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-19 21:15:11 +09:00
com : 결재함 상세 내용 계약관리 대금청구 - 대금지급중 처리 이후로도 사용중
This commit is contained in:
@@ -9,7 +9,12 @@ const props = defineProps<{apprNo : string}>();
|
||||
console.log(props.apprNo)
|
||||
|
||||
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)
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user