feat: dados mock de todos os módulos

This commit is contained in:
Junior
2026-03-14 10:34:38 -03:00
parent cb15c747b6
commit ccaf29f229
8 changed files with 226 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import type { Documento } from '~/types'
export const documentos: Documento[] = [
{ id: '1', nome: 'Certidão Federal (PGFN)', tipo: 'certidao', dataVencimento: new Date('2026-04-28'), status: 'valida' },
{ id: '2', nome: 'Certidão Estadual (SP)', tipo: 'certidao', dataVencimento: new Date('2026-03-22'), status: 'vencendo' },
{ id: '3', nome: 'CND FGTS', tipo: 'certidao', dataVencimento: new Date('2026-03-11'), status: 'vencida' },
{ id: '4', nome: 'Contrato Social', tipo: 'contrato_social', dataVencimento: null, status: 'sem_vencimento' },
{ id: '5', nome: 'Balanço Patrimonial 2025', tipo: 'balanco', dataVencimento: null, status: 'sem_vencimento' },
{ id: '6', nome: 'Atestado de Capacidade Técnica — TI', tipo: 'atestado', dataVencimento: null, status: 'sem_vencimento' },
{ id: '7', nome: 'CND Municipal (São Paulo)', tipo: 'certidao', dataVencimento: new Date('2026-03-20'), status: 'vencendo' },
{ id: '8', nome: 'Procuração — João Silva', tipo: 'procuracao', dataVencimento: new Date('2026-12-31'), status: 'valida' },
]