mirror of
https://git.hmsn.ink/kospo/svcm/dmz.git
synced 2026-03-20 01:12:30 +09:00
헤더 메타 정보 변경
This commit is contained in:
@@ -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
|
||||||
@@ -51,12 +52,12 @@ const isSave = (prcs: iPrcs): boolean => {
|
|||||||
const now = new Date(nowDt).getTime()
|
const now = new Date(nowDt).getTime()
|
||||||
const sdt = new Date(prcs.regSdat).getTime()
|
const sdt = new Date(prcs.regSdat).getTime()
|
||||||
const edt = new Date(prcs.regEdat).getTime()
|
const edt = new Date(prcs.regEdat).getTime()
|
||||||
return (sdt <= now && edt >= now)
|
return (sdt <= now && edt >= now)
|
||||||
}
|
}
|
||||||
|
|
||||||
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 = () => {
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user