feat: dados mock de todos os módulos
This commit is contained in:
27
front-end/app/data/mock/concorrentes.ts
Normal file
27
front-end/app/data/mock/concorrentes.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import type { Concorrente } from '~/types'
|
||||
|
||||
export const concorrentes: Concorrente[] = [
|
||||
{
|
||||
id: '1', cnpj: '12.345.678/0001-90', nome: 'TechGov Soluções Ltda',
|
||||
totalDisputas: 8, totalVitorias: 3,
|
||||
historicoDisputas: [
|
||||
{ editalId: '1', venceu: false, valor: 820000 },
|
||||
{ editalId: '5', venceu: true, valor: 1250000 },
|
||||
],
|
||||
},
|
||||
{
|
||||
id: '2', cnpj: '98.765.432/0001-10', nome: 'InfoPública Tecnologia S.A.',
|
||||
totalDisputas: 12, totalVitorias: 5,
|
||||
historicoDisputas: [
|
||||
{ editalId: '1', venceu: false, valor: 830000 },
|
||||
{ editalId: '8', venceu: true, valor: 910000 },
|
||||
],
|
||||
},
|
||||
{
|
||||
id: '3', cnpj: '11.222.333/0001-44', nome: 'GovTech Brasil Ltda',
|
||||
totalDisputas: 6, totalVitorias: 2,
|
||||
historicoDisputas: [
|
||||
{ editalId: '3', venceu: false, valor: 415000 },
|
||||
],
|
||||
},
|
||||
]
|
||||
Reference in New Issue
Block a user