feat: dados mock de todos os módulos
This commit is contained in:
12
front-end/app/data/mock/documentos.ts
Normal file
12
front-end/app/data/mock/documentos.ts
Normal 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' },
|
||||
]
|
||||
Reference in New Issue
Block a user