mirror of
https://git.hmsn.ink/kospo/svcm/dmz.git
synced 2026-03-19 21:05:08 +09:00
헤더 메타 정보 변경
This commit is contained in:
@@ -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 = () => {
|
||||
|
||||
@@ -6,7 +6,7 @@ export type MinimalTheme = 'darker' | 'light'
|
||||
|
||||
const props = withDefaults(
|
||||
defineProps<{
|
||||
estimateList: iPrcsPageable
|
||||
prcsList: iPrcsPageable
|
||||
total: number
|
||||
length: number
|
||||
page: number
|
||||
|
||||
Reference in New Issue
Block a user