Initial commit: Add project files
ci / backend (push) Failing after 12s
ci / frontend (push) Failing after 19s
ci / static (push) Failing after 45s

This commit is contained in:
2026-08-02 05:15:36 +09:00
commit dcd1322d41
636 changed files with 122352 additions and 0 deletions
@@ -0,0 +1,10 @@
<script setup lang="ts">
import { DetailReadPage, EvidenceVersionSet } from '@/shared/ui'
const versionSet = { datasetId: 'DECISION_REQUIRED', dataHash: 'DECISION_REQUIRED', modelVersion: 'DECISION_REQUIRED', configVersion: 'DECISION_REQUIRED', codeSha: 'DECISION_REQUIRED', contractVersion: '__CONTRACT_VERSION__' }
</script>
<template>
<DetailReadPage title="__TITLE__" state="READY" :evidence="{ version: '__CONTRACT_VERSION__' }">
<section class="ks-card ks-section">상세 내용</section>
<template #evidence><EvidenceVersionSet :value="versionSet" /></template>
</DetailReadPage>
</template>
@@ -0,0 +1,10 @@
<script setup lang="ts">
import { EditFormPage } from '@/shared/ui/screen-types'
import { KsButton, KsTextField } from '@/shared/ui/components'
</script>
<template>
<EditFormPage title="__TITLE__" state="READY" :evidence="{ version: '__CONTRACT_VERSION__' }" @submit="undefined">
<KsTextField model-value="" label="이름" />
<template #footer><KsButton label="저장" type="submit" /></template>
</EditFormPage>
</template>
@@ -0,0 +1,10 @@
<script setup lang="ts">
import { SearchListCrudPage } from '@/shared/ui/screen-types'
import { KsButton, KsDataGrid } from '@/shared/ui/components'
</script>
<template>
<SearchListCrudPage title="__TITLE__" state="LOADING" :evidence="{ version: '__CONTRACT_VERSION__' }">
<template #actions><KsButton label="등록" /></template>
<KsDataGrid :rows="[]" :columns="[]" />
</SearchListCrudPage>
</template>
@@ -0,0 +1,10 @@
<script setup lang="ts">
import { ApprovalWorkbenchPage } from '@/shared/ui/screen-types'
</script>
<template>
<ApprovalWorkbenchPage title="__TITLE__" state="READY" :evidence="{ version: '__CONTRACT_VERSION__' }">
<template #queue>검토 대기열</template>
<template #detail>증거와 상세</template>
<template #decision>승인/보류/기각</template>
</ApprovalWorkbenchPage>
</template>