헤더 메타 정보 변경

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(() => { onMounted(() => {
api.getPrcs(params.value).then((res: iPrcsPageable) => { api.getPrcs(params.value).then((res: iPrcsPageable) => {
console.log(res)
prcsList.value = res prcsList.value = res
page.value = prcsList.value.totlaPages || 0 page.value = prcsList.value.totlaPages || 0
total.value = prcsList.value.totalElements || 0 total.value = prcsList.value.totalElements || 0
@@ -55,8 +56,8 @@ const isSave = (prcs: iPrcs): boolean => {
} }
function onSearch(data: any) { function onSearch(data: any) {
console.log(data) // console.log(data)
// params.value = structuredClone(data) params.value = structuredClone(data)
} }
const onEstimateSave = () => { const onEstimateSave = () => {

View File

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