헤더 메타 정보 변경

This commit is contained in:
2025-05-28 06:03:34 +00:00
parent 1bcaada411
commit ccf45a1946
2 changed files with 5 additions and 4 deletions

View File

@@ -28,6 +28,7 @@ const prcsList = ref<iPrcsPageable>()
onMounted(() => {
api.getPrcs(params.value).then((res: iPrcsPageable) => {
console.log(res)
prcsList.value = res
page.value = prcsList.value.totlaPages || 0
total.value = prcsList.value.totalElements || 0
@@ -51,12 +52,12 @@ const isSave = (prcs: iPrcs): boolean => {
const now = new Date(nowDt).getTime()
const sdt = new Date(prcs.regSdat).getTime()
const edt = new Date(prcs.regEdat).getTime()
return (sdt <= now && edt >= now)
return (sdt <= now && edt >= now)
}
function onSearch(data: any) {
console.log(data)
// params.value = structuredClone(data)
// console.log(data)
params.value = structuredClone(data)
}
const onEstimateSave = () => {

View File

@@ -6,7 +6,7 @@ export type MinimalTheme = 'darker' | 'light'
const props = withDefaults(
defineProps<{
estimateList: iPrcsPageable
prcsList: iPrcsPageable
total: number
length: number
page: number