Browse Source

Remocao do atributo has_votos

pull/3425/head
AlGouvea 4 years ago
parent
commit
8b96214f0a
  1. 3
      frontend/src/__apps/painel/main.js

3
frontend/src/__apps/painel/main.js

@ -21,7 +21,6 @@ const v = new Vue({ // eslint-disable-line
sessao_solene_tema: '', sessao_solene_tema: '',
presentes: [], presentes: [],
oradores: [], oradores: [],
has_votos: false,
numero_votos_sim: 0, numero_votos_sim: 0,
numero_votos_nao: 0, numero_votos_nao: 0,
numero_abstencoes: 0, numero_abstencoes: 0,
@ -74,14 +73,12 @@ const v = new Vue({ // eslint-disable-line
var color = 'white' var color = 'white'
if (parlamentar.voto === 'Voto Informado' || parlamentar.voto === '') { if (parlamentar.voto === 'Voto Informado' || parlamentar.voto === '') {
color = 'yellow' color = 'yellow'
this.has_votos = false
} else { } else {
if (parlamentar.voto === 'Sim') { if (parlamentar.voto === 'Sim') {
color = 'green' color = 'green'
} else if (parlamentar.voto === 'Não') { } else if (parlamentar.voto === 'Não') {
color = 'red' color = 'red'
} }
this.has_votos = true
} }
parlamentar.color = color parlamentar.color = color
}, },

Loading…
Cancel
Save