0108a39cd6
Validators (Pushes and Pull Requests) / UI & Storage Validation (push) Failing after 14s
Validators (Pushes and Pull Requests) / Database & Schema Validation (push) Successful in 16s
Validators (Pushes and Pull Requests) / Security & Secrets (push) Has been cancelled
Validators (Pushes and Pull Requests) / .NET Contracts (push) Has been cancelled
Validators (Pushes and Pull Requests) / CI Workflow Lint (push) Has been cancelled
Validators (Pushes and Pull Requests) / Notify PR Results (push) Has been cancelled
Validators (Pushes and Pull Requests) / WBS & Audit Validations (push) Has been cancelled
Validators (Pushes and Pull Requests) / Core Validators & Database Setup (push) Has been cancelled
Validators (Pushes and Pull Requests) / Calibration & Performance (push) Has been cancelled
Validators (Pushes and Pull Requests) / Operational Report & Decision Packet (push) Has been cancelled
38 lines
2.7 KiB
Vue
38 lines
2.7 KiB
Vue
<!-- TemplateGalleryView.vue -->
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue';
|
|
|
|
const templates = ref([
|
|
{ id: 'factor-detail', title: '타입 A: 마스터-디테일 스플릿', path: '/templates/factor-detail', desc: 'factor_version_history 팩터 임계값 개별 상세 제어' },
|
|
{ id: 'ag-grid-market', title: '타입 B: AG Grid 대량 편집', path: '/templates/ag-grid-market', desc: 'market_raw_history 종가 정정 및 실시간 괴리율 리액티브 연산' },
|
|
{ id: 'rebalance-pipeline', title: '타입 C: 단계별 위저드', path: '/templates/rebalance-pipeline', desc: 'decision_result_history 수동 리밸런싱 실행 파이프라인' },
|
|
{ id: 'real-dashboard', title: '타입 D: KPI 대시보드', path: '/templates/real-dashboard', desc: '포트폴리오 즉시방어 자산 비율 및 Hangfire 배치 관제' },
|
|
{ id: 'waterfall-tree', title: '타입 E: 리스크 한도 트리', path: '/templates/waterfall-tree', desc: 'order_waterfall_execution 및 shadow_ledger_history 차단 게이트 스캔' },
|
|
{ id: 'maker-checker', title: '타입 F: Maker-Checker 결재', path: '/templates/maker-checker', desc: '주요 정보 변경 시 2차 Checker 이중 승인 대기 보관함' },
|
|
{ id: 'real-rollback', title: '타입 G: 감사 이력 및 롤백', path: '/templates/real-rollback', desc: '의사결정 패킷 이력 대조 및 특정 시점 원장 롤백 복구' },
|
|
{ id: 'excel-upload', title: '타입 H: 실시간 엑셀 검증', path: '/templates/excel-upload', desc: '브라우저 내 엑셀 파싱 및 정합성 위반 셀 실시간 하이라이팅 가드' },
|
|
{ id: 'olap-export', title: '타입 I: OLAP 및 엑셀 출력', path: '/templates/olap-export', desc: 'factor_output_history 피벗 연산 및 대용량 스트리밍 xlsx 다운로드' }
|
|
]);
|
|
</script>
|
|
|
|
<template>
|
|
<div class="p-6 bg-gray-50 min-h-screen text-sm">
|
|
<div class="mb-6">
|
|
<h2 class="text-xl font-bold text-gray-800">🛠️ 상용화 프로토타입 템플릿 갤러리</h2>
|
|
<p class="text-xs text-gray-500">실제 PostgreSQL 테이블 및 C# BFF 스트리밍 연동 로직이 100% 매핑된 9대 실무 템플릿 목록입니다.</p>
|
|
</div>
|
|
|
|
<div class="grid grid-cols-3 gap-4">
|
|
<div v-for="t in templates" :key="t.id" class="bg-white p-5 rounded border hover:shadow-md transition flex flex-col justify-between">
|
|
<div>
|
|
<h4 class="font-bold text-gray-800 text-sm mb-1">{{ t.title }}</h4>
|
|
<p class="text-xs text-gray-400 mb-4">{{ t.desc }}</p>
|
|
</div>
|
|
<router-link :to="t.path" class="text-center py-2 bg-blue-600 hover:bg-blue-700 text-white font-bold rounded text-xs block decoration-none">
|
|
템플릿 화면 보기
|
|
</router-link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|