Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Walter Felipe
submeta
Commits
e7d3017a
Commit
e7d3017a
authored
Feb 13, 2022
by
Guilherme Silva
Browse files
Ajustes e correções visuais na visualização de uma proposta
parent
82cd9541
Changes
1
Hide whitespace changes
Inline
Side-by-side
resources/views/administrador/analisarProposta.blade.php
View file @
e7d3017a
...
@@ -56,14 +56,20 @@
...
@@ -56,14 +56,20 @@
<
p
style
=
"color: #4D4D4D; padding: 0px"
><
b
>
Nome
:</
b
>
{{
App\Proponente
::
find
(
$trabalho
->
proponente_id
)
->
user
->
name
}}
</
p
>
<
p
style
=
"color: #4D4D4D; padding: 0px"
><
b
>
Nome
:</
b
>
{{
App\Proponente
::
find
(
$trabalho
->
proponente_id
)
->
user
->
name
}}
</
p
>
</
div
>
</
div
>
<
div
class
=
"col-md-12"
>
<
div
class
=
"col-md-12"
>
<
p
style
=
"color: #4D4D4D; padding: 0px"
><
b
>
Lattes
:</
b
>
<
b
style
=
"color: #4D4D4D;"
>
Lattes
:</
b
>
@
if
(
App\Proponente
::
where
(
'id'
,
$trabalho
->
proponente_id
)
->
first
()
->
linkLattes
!=
null
)
@
if
(
App\Proponente
::
where
(
'id'
,
$trabalho
->
proponente_id
)
->
first
()
->
linkLattes
!=
null
)
{{
App\Proponente
::
where
(
'id'
,
$trabalho
->
proponente_id
)
->
first
()
->
linkLattes
}}
<
a
style
=
"color: #4D4D4D;"
href
=
"{{ App\Proponente::where('id',
$trabalho->proponente_id
)->first()->linkLattes }}"
@
endif
target
=
"_blank"
</
p
>
>
{{
App\Proponente
::
where
(
'id'
,
$trabalho
->
proponente_id
)
->
first
()
->
linkLattes
}}
</
a
>
@
endif
</
div
>
</
div
>
<
div
class
=
"col-md-12"
>
<
div
class
=
"col-md-12"
>
<
p
style
=
"color: #4D4D4D; padding: 0px"
><
b
>
Grupo
de
Pesquisa
:</
b
>
{{
$trabalho
->
linkGrupoPesquisa
}}
</
p
>
<
br
>
<
b
style
=
"color: #4D4D4D;"
>
Grupo
de
Pesquisa
:
</
b
>
<
a
style
=
"color: #4D4D4D;"
href
=
"{{
$trabalho->linkGrupoPesquisa
}}"
target
=
"_blank"
>
{{
$trabalho
->
linkGrupoPesquisa
}}
</
a
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
...
@@ -81,15 +87,17 @@
...
@@ -81,15 +87,17 @@
<
div
class
=
"form-row mt-3"
>
<
div
class
=
"form-row mt-3"
>
<
div
class
=
"col-sm-9"
><
h5
style
=
"color: #234B8B; font-weight: bold"
>
Discentes
</
h5
></
div
>
<
div
class
=
"col-sm-9"
><
h5
style
=
"color: #234B8B; font-weight: bold"
>
Discentes
</
h5
></
div
>
<
div
class
=
"col-sm-3 text-sm-right"
>
<
div
class
=
"col-sm-3 text-sm-right"
>
<
a
href
=
""
data
-
toggle
=
"modal"
data
-
target
=
"#modalVizuSubstituicao"
class
=
"button"
>
Substituições
Pendentes
</
a
>
@
if
(
$substituicoesPendentes
->
count
()
>
0
)
@
if
(
$substituicoesPendentes
->
count
()
>
0
)
<
a
href
=
""
data
-
toggle
=
"modal"
data
-
target
=
"#modalVizuSubstituicao"
class
=
"button"
>
Substituições
Pendentes
</
a
>
<
img
class
=
""
src
=
"
{
{asset('img/icons/warning.ico')}
}
"
style
=
"width:15px"
alt
=
""
>
<
img
class
=
""
src
=
"
{
{asset('img/icons/warning.ico')}
}
"
style
=
"width:15px"
alt
=
""
>
@
else
<
a
href
=
""
data
-
toggle
=
"modal"
data
-
target
=
"#modalVizuSubstituicao"
class
=
"button"
>
Substituições
</
a
>
@
endif
@
endif
</
div
>
</
div
>
</
div
>
</
div
>
<
hr
style
=
"border-top: 1px solid#1492E6"
>
<
hr
style
=
"border-top: 1px solid#1492E6"
>
<
div
class
=
"row justify-content-
center
"
style
=
"alignment: center"
>
<
div
class
=
"row justify-content-
start
"
style
=
"alignment: center"
>
@
foreach
(
$trabalho
->
participantes
as
$participante
)
@
foreach
(
$trabalho
->
participantes
as
$participante
)
<
div
class
=
"col-sm-1"
>
<
div
class
=
"col-sm-1"
>
<
img
src
=
"
{
{asset('img/icons/usuario.svg')}
}
"
style
=
"width:60px"
alt
=
""
>
<
img
src
=
"
{
{asset('img/icons/usuario.svg')}
}
"
style
=
"width:60px"
alt
=
""
>
...
@@ -124,6 +132,48 @@
...
@@ -124,6 +132,48 @@
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
@
foreach
(
$substituicoesProjeto
as
$subs
)
<!--
Modal
vizualizar
info
participante
substituido
-->
<
div
class
=
"modal fade"
id
=
"modalVizuParticipanteSub
{
{$subs->participanteSubstituido()->withTrashed()->first()->id}
}
"
tabindex
=
"-1"
role
=
"dialog"
aria
-
labelledby
=
"exampleModalLabel"
aria
-
hidden
=
"true"
>
<
div
class
=
"modal-dialog modal-dialog-centered modal-lg"
>
<
div
class
=
"modal-content"
>
<
div
class
=
"modal-header"
style
=
"overflow-x:auto"
>
<
h5
class
=
"modal-title"
id
=
"exampleModalLabel"
style
=
"color:#1492E6"
>
Informações
Participante
</
h5
>
<
button
type
=
"button"
class
=
"close"
data
-
dismiss
=
"modal"
aria
-
label
=
"Close"
style
=
"padding-top: 8px; color:#1492E6"
>
<
span
aria
-
hidden
=
"true"
>&
times
;
</
span
>
</
button
>
</
div
>
<
div
class
=
"modal-body"
>
@
include
(
'administrador.vizualizarParticipante'
,
[
'visualizarSubstituido'
=>
1
])
</
div
>
</
div
>
</
div
>
</
div
>
<!--
Modal
vizualizar
info
participante
substituto
-->
<
div
class
=
"modal fade"
id
=
"modalVizuParticipanteSub
{
{$subs->participanteSubstituto()->withTrashed()->first()->id}
}
"
tabindex
=
"-1"
role
=
"dialog"
aria
-
labelledby
=
"exampleModalLabel"
aria
-
hidden
=
"true"
>
<
div
class
=
"modal-dialog modal-dialog-centered modal-lg"
>
<
div
class
=
"modal-content"
>
<
div
class
=
"modal-header"
style
=
"overflow-x:auto"
>
<
h5
class
=
"modal-title"
id
=
"exampleModalLabel"
style
=
"color:#1492E6"
>
Informações
Participante
</
h5
>
<
button
type
=
"button"
class
=
"close"
data
-
dismiss
=
"modal"
aria
-
label
=
"Close"
style
=
"padding-top: 8px; color:#1492E6"
>
<
span
aria
-
hidden
=
"true"
>&
times
;
</
span
>
</
button
>
</
div
>
<
div
class
=
"modal-body"
>
@
include
(
'administrador.vizualizarParticipante'
)
</
div
>
</
div
>
</
div
>
</
div
>
@
endforeach
<!--
Modal
reprovar
substituição
-->
<!--
Modal
reprovar
substituição
-->
<
div
class
=
"modal fade"
id
=
"modalCancelarSubst"
tabindex
=
"-1"
role
=
"dialog"
aria
-
labelledby
=
"exampleModalLabel"
aria
-
hidden
=
"true"
>
<
div
class
=
"modal fade"
id
=
"modalCancelarSubst"
tabindex
=
"-1"
role
=
"dialog"
aria
-
labelledby
=
"exampleModalLabel"
aria
-
hidden
=
"true"
>
...
@@ -230,21 +280,20 @@
...
@@ -230,21 +280,20 @@
{{
--
Arquivo
--
}}
{{
--
Arquivo
--
}}
<
div
class
=
"col-sm-4"
>
<
div
class
=
"col-sm-4"
>
<
label
for
=
"anexoProjeto"
class
=
"col-form-label"
style
=
"font-weight: bold"
>
{{
__
(
'Projeto: '
)
}}
</
label
>
<
label
for
=
"anexoProjeto"
class
=
"col-form-label"
style
=
"font-weight: bold"
>
{{
__
(
'Projeto: '
)
}}
</
label
>
<
a
href
=
"{{ route('baixar.anexo.projeto', ['id' =>
$trabalho->id
])}}"
>
Arquivo
</
a
>
<
a
href
=
"{{ route('baixar.anexo.projeto', ['id' =>
$trabalho->id
])}}"
>
<
img
class
=
""
src
=
"
{
{asset('img/icons/pdf.ico')}
}
"
style
=
"width:40px"
alt
=
""
>
</
a
>
<
img
class
=
""
src
=
"
{
{asset('img/icons/pdf.ico')}
}
"
style
=
"width:20px"
alt
=
""
>
</
div
>
</
div
>
<
div
class
=
"col-sm-4"
>
<
div
class
=
"col-sm-4"
>
<
label
for
=
"anexoLatterCoordenador"
class
=
"col-form-label"
style
=
"font-weight: bold"
>
{{
__
(
'Lattes do Coordenador: '
)
}}
</
label
>
<
label
for
=
"anexoLatterCoordenador"
class
=
"col-form-label"
style
=
"font-weight: bold"
>
{{
__
(
'Lattes do Coordenador: '
)
}}
</
label
>
<
a
href
=
"{{ route('baixar.anexo.lattes', ['id' =>
$trabalho->id
]) }}"
>
Arquivo
</
a
>
<
a
href
=
"{{ route('baixar.anexo.lattes', ['id' =>
$trabalho->id
]) }}"
>
<
img
class
=
""
src
=
"
{
{asset('img/icons/pdf.ico')}
}
"
style
=
"width:40px"
alt
=
""
>
</
a
>
<
img
class
=
""
src
=
"
{
{asset('img/icons/pdf.ico')}
}
"
style
=
"width:20px"
alt
=
""
>
</
div
>
</
div
>
<
div
class
=
"col-sm-4"
>
<
div
class
=
"col-sm-4"
>
<
label
for
=
"nomeTrabalho"
class
=
"col-form-label"
style
=
"font-weight: bold"
>
{{
__
(
'Autorização do Comitê de Ética: '
)
}}
</
label
>
<
label
for
=
"nomeTrabalho"
class
=
"col-form-label"
style
=
"font-weight: bold"
>
{{
__
(
'Autorização do Comitê de Ética: '
)
}}
</
label
>
@
if
(
$trabalho
->
anexoAutorizacaoComiteEtica
!=
null
)
@
if
(
$trabalho
->
anexoAutorizacaoComiteEtica
!=
null
)
<
a
href
=
"{{ route('baixar.anexo.comite', ['id' =>
$trabalho->id
]) }}"
>
Arquivo
</
a
>
<
a
href
=
"{{ route('baixar.anexo.comite', ['id' =>
$trabalho->id
]) }}"
>
<
img
class
=
""
src
=
"
{
{asset('img/icons/pdf.ico')}
}
"
style
=
"width:40px"
alt
=
""
></
a
>
<
img
class
=
""
src
=
"
{
{asset('img/icons/pdf.ico')}
}
"
style
=
"width:20px"
alt
=
""
>
@
else
@
else
-
-
@
endif
@
endif
...
@@ -252,15 +301,14 @@
...
@@ -252,15 +301,14 @@
<
div
class
=
"col-sm-4"
>
<
div
class
=
"col-sm-4"
>
<
label
for
=
"anexoPlanilha"
class
=
"col-form-label"
style
=
"font-weight: bold"
>
{{
__
(
'Planilha de Pontuação: '
)
}}
</
label
>
<
label
for
=
"anexoPlanilha"
class
=
"col-form-label"
style
=
"font-weight: bold"
>
{{
__
(
'Planilha de Pontuação: '
)
}}
</
label
>
<
a
href
=
"{{ route('baixar.anexo.planilha', ['id' =>
$trabalho->id
]) }}"
>
Arquivo
</
a
>
<
a
href
=
"{{ route('baixar.anexo.planilha', ['id' =>
$trabalho->id
]) }}"
>
<
img
class
=
""
src
=
"
{
{asset('img/icons/xlsx.ico')}
}
"
style
=
"width:40px"
alt
=
""
>
</
a
>
<
img
class
=
""
src
=
"
{
{asset('img/icons/xlsx.ico')}
}
"
style
=
"width:20px"
alt
=
""
>
</
div
>
</
div
>
<
div
class
=
"col-sm-4"
>
<
div
class
=
"col-sm-4"
>
<
label
for
=
"nomeTrabalho"
class
=
"col-form-label"
style
=
"font-weight: bold"
>
{{
__
(
'Justificativa: '
)
}}
</
label
>
<
label
for
=
"nomeTrabalho"
class
=
"col-form-label"
style
=
"font-weight: bold"
>
{{
__
(
'Justificativa: '
)
}}
</
label
>
@
if
(
$trabalho
->
justificativaAutorizacaoEtica
!=
null
)
@
if
(
$trabalho
->
justificativaAutorizacaoEtica
!=
null
)
<
a
href
=
"{{ route('baixar.anexo.justificativa', ['id' =>
$trabalho->id
]) }}"
>
Arquivo
</
a
>
<
a
href
=
"{{ route('baixar.anexo.justificativa', ['id' =>
$trabalho->id
]) }}"
><
img
class
=
""
src
=
"
{
{asset('img/icons/pdf.ico')}
}
"
style
=
"width:40px"
alt
=
""
></
a
>
<
img
class
=
""
src
=
"
{
{asset('img/icons/pdf.ico')}
}
"
style
=
"width:20px"
alt
=
""
>
@
else
@
else
-
-
@
endif
@
endif
...
@@ -270,9 +318,7 @@
...
@@ -270,9 +318,7 @@
{{
--
Decisão
do
CONSU
--
}}
{{
--
Decisão
do
CONSU
--
}}
<
div
class
=
"col-sm-4"
>
<
div
class
=
"col-sm-4"
>
<
label
for
=
"anexoCONSU"
class
=
"col-form-label"
style
=
"font-weight: bold"
>
{{
__
(
'Decisão do CONSU: '
)
}}
</
label
>
<
label
for
=
"anexoCONSU"
class
=
"col-form-label"
style
=
"font-weight: bold"
>
{{
__
(
'Decisão do CONSU: '
)
}}
</
label
>
<
a
href
=
"{{ route('baixar.anexo.consu', ['id' =>
$trabalho->id
]) }}"
>
Arquivo
</
a
>
<
a
href
=
"{{ route('baixar.anexo.consu', ['id' =>
$trabalho->id
]) }}"
><
img
class
=
""
src
=
"
{
{asset('img/icons/pdf.ico')}
}
"
style
=
"width:40px"
alt
=
""
></
a
>
<
img
class
=
""
src
=
"
{
{asset('img/icons/pdf.ico')}
}
"
style
=
"width:20px"
alt
=
""
>
</
div
>
</
div
>
@
endif
@
endif
...
@@ -292,7 +338,7 @@
...
@@ -292,7 +338,7 @@
<
div
class
=
"form-row mt-3"
>
<
div
class
=
"form-row mt-3"
>
<
div
class
=
"col-sm-9"
><
h5
style
=
"color: #234B8B; font-weight: bold"
>
Relatórios
</
h5
></
div
>
<
div
class
=
"col-sm-9"
><
h5
style
=
"color: #234B8B; font-weight: bold"
>
Relatórios
</
h5
></
div
>
<
div
class
=
"col-sm-3 text-sm-right"
>
<
div
class
=
"col-sm-3 text-sm-right"
>
<
a
href
=
"{{route('planos.listar', ['id' =>
$trabalho->id
])}}"
class
=
"button"
>
Lista
de
Relatórios
</
a
>
<
a
href
=
"{{route('planos.listar', ['id' =>
$trabalho->id
])}}"
class
=
"button"
>
Lista
r
Relatórios
</
a
>
</
div
>
</
div
>
</
div
>
</
div
>
<
hr
style
=
"border-top: 1px solid#1492E6"
>
<
hr
style
=
"border-top: 1px solid#1492E6"
>
...
@@ -383,7 +429,7 @@
...
@@ -383,7 +429,7 @@
</
div
>
</
div
>
<
hr
style
=
"border-top: 1px solid#1492E6"
>
<
hr
style
=
"border-top: 1px solid#1492E6"
>
<
div
class
=
"row justify-content-
center
"
style
=
"alignment: center"
>
<
div
class
=
"row justify-content-
start
"
style
=
"alignment: center"
>
@
foreach
(
$trabalho
->
avaliadors
as
$avaliador
)
@
foreach
(
$trabalho
->
avaliadors
as
$avaliador
)
<
div
class
=
"col-sm-1"
>
<
div
class
=
"col-sm-1"
>
<
img
src
=
"
{
{asset('img/icons/usuario.svg')}
}
"
style
=
"width:60px"
alt
=
""
>
<
img
src
=
"
{
{asset('img/icons/usuario.svg')}
}
"
style
=
"width:60px"
alt
=
""
>
...
@@ -412,9 +458,6 @@
...
@@ -412,9 +458,6 @@
<
div
class
=
"container"
>
<
div
class
=
"container"
>
<
div
class
=
"form-row mt-3"
>
<
div
class
=
"form-row mt-3"
>
<
div
class
=
"col-md-11"
><
h5
style
=
"color: #234B8B; font-weight: bold"
>
Aprovação
</
h5
></
div
>
<
div
class
=
"col-md-11"
><
h5
style
=
"color: #234B8B; font-weight: bold"
>
Aprovação
</
h5
></
div
>
<
div
class
=
"col-md-1 text-sm-right"
>
<
h5
style
=
"color: #234B8B; font-weight: bold"
class
=
"col-md-12 text-center"
>
1
/
3
</
h5
>
</
div
>
</
div
>
</
div
>
<
hr
style
=
"border-top: 1px solid#1492E6"
>
<
hr
style
=
"border-top: 1px solid#1492E6"
>
<
form
action
=
"{{ route('trabalho.aprovarProposta', ['id' =>
$trabalho->id
]) }}"
method
=
"post"
>
<
form
action
=
"{{ route('trabalho.aprovarProposta', ['id' =>
$trabalho->id
]) }}"
method
=
"post"
>
...
@@ -477,7 +520,7 @@
...
@@ -477,7 +520,7 @@
</
ul
>
</
ul
>
</
div
>
</
div
>
<
div
id
=
"content"
>
<
div
id
=
"content"
>
<
div
class
=
"justify-content-center conteudo"
id
=
"tela1"
style
=
"margin-top: 0px;border: none;"
>
<
div
class
=
"justify-content-center conteudo"
id
=
"tela1"
style
=
"margin-top: 0px;border: none;
overflow-x: auto;
"
>
<
div
class
=
"col-md-12"
id
=
"tela1"
style
=
"padding: 0px"
>
<
div
class
=
"col-md-12"
id
=
"tela1"
style
=
"padding: 0px"
>
<
div
class
=
"card"
id
=
"tela1"
style
=
"border-radius: 5px"
>
<
div
class
=
"card"
id
=
"tela1"
style
=
"border-radius: 5px"
>
<
div
class
=
"card-body"
id
=
"tela1"
style
=
"padding-top: 0.2rem;padding-right: 0px;padding-left: 5px;padding-bottom: 5px;"
>
<
div
class
=
"card-body"
id
=
"tela1"
style
=
"padding-top: 0.2rem;padding-right: 0px;padding-left: 5px;padding-bottom: 5px;"
>
...
@@ -529,7 +572,7 @@
...
@@ -529,7 +572,7 @@
</
div
>
</
div
>
</
div
>
</
div
>
<
div
class
=
"justify-content-center conteudo"
id
=
"tela2"
style
=
"margin-top: 0px;border: none;"
>
<
div
class
=
"justify-content-center conteudo"
id
=
"tela2"
style
=
"margin-top: 0px;border: none;
overflow-x: auto;
"
>
<
div
class
=
"col-md-12"
id
=
"tela2"
style
=
"padding: 0px"
>
<
div
class
=
"col-md-12"
id
=
"tela2"
style
=
"padding: 0px"
>
<
div
class
=
"card"
id
=
"tela2"
style
=
"border-radius: 5px"
>
<
div
class
=
"card"
id
=
"tela2"
style
=
"border-radius: 5px"
>
<
div
class
=
"card-body"
id
=
"tela2"
style
=
"padding-top: 0.2rem;padding-right: 0px;padding-left: 5px;padding-bottom: 5px;"
>
<
div
class
=
"card-body"
id
=
"tela2"
style
=
"padding-top: 0.2rem;padding-right: 0px;padding-left: 5px;padding-bottom: 5px;"
>
...
@@ -544,7 +587,7 @@
...
@@ -544,7 +587,7 @@
<
img
src
=
"
{
{asset('img/icons/usuario.svg')}
}
"
style
=
"width:50px"
alt
=
""
>
<
img
src
=
"
{
{asset('img/icons/usuario.svg')}
}
"
style
=
"width:50px"
alt
=
""
>
</
div
>
</
div
>
<
div
class
=
"col-md-4"
style
=
"padding-left: 20px;padding-right: 5px;"
>
<
div
class
=
"col-md-4"
style
=
"padding-left: 20px;padding-right: 5px;"
>
<
a
onclick
=
"vizuPartici
pante
(
{
{$subs->participanteSubstituido()->withTrashed()->first()->id}
}
)"
class
=
"button tiro"
>
{{
$subs
->
participanteSubstitu
t
o
()
->
withTrashed
()
->
first
()
->
user
->
name
}}
</
a
>
<
a
onclick
=
"vizuPartici(
{
{$subs->participanteSubstituido()->withTrashed()->first()->id}
}
)"
class
=
"button tiro"
>
{{
$subs
->
participanteSubstitu
id
o
()
->
withTrashed
()
->
first
()
->
user
->
name
}}
</
a
>
</
div
>
</
div
>
<
div
class
=
"col-md-1 text-left"
style
=
"padding-left: 0px;"
>
<
div
class
=
"col-md-1 text-left"
style
=
"padding-left: 0px;"
>
<
img
src
=
"
{
{asset('img/seta.png')}
}
"
style
=
"width:40px;margin-left: 5px;margin-right: 10px;"
alt
=
""
>
<
img
src
=
"
{
{asset('img/seta.png')}
}
"
style
=
"width:40px;margin-left: 5px;margin-right: 10px;"
alt
=
""
>
...
@@ -553,7 +596,7 @@
...
@@ -553,7 +596,7 @@
<
img
src
=
"
{
{asset('img/icons/usuario.svg')}
}
"
style
=
"width:50px"
alt
=
""
>
<
img
src
=
"
{
{asset('img/icons/usuario.svg')}
}
"
style
=
"width:50px"
alt
=
""
>
</
div
>
</
div
>
<
div
class
=
"col-md-4"
style
=
"padding-left: 20px;padding-right: 5px;"
>
<
div
class
=
"col-md-4"
style
=
"padding-left: 20px;padding-right: 5px;"
>
<
a
onclick
=
"vizuPartici
pante
(
{
{$subs->participanteSubstituto()->withTrashed()->first()->id}
}
)"
class
=
"button"
>
{{
$subs
->
participanteSubstituto
()
->
withTrashed
()
->
first
()
->
user
->
name
}}
</
a
>
<
a
onclick
=
"vizuPartici(
{
{$subs->participanteSubstituto()->withTrashed()->first()->id}
}
)"
class
=
"button"
>
{{
$subs
->
participanteSubstituto
()
->
withTrashed
()
->
first
()
->
user
->
name
}}
</
a
>
</
div
>
</
div
>
</
div
>
</
div
>
...
@@ -682,6 +725,10 @@
...
@@ -682,6 +725,10 @@
$
(
"#modalVizuSubstituicao"
)
.
modal
(
'hide'
);
$
(
"#modalVizuSubstituicao"
)
.
modal
(
'hide'
);
setTimeout
(()
=>
{
$
(
"#modalVizuParticipante"
+
id
)
.
modal
();
},
500
);
setTimeout
(()
=>
{
$
(
"#modalVizuParticipante"
+
id
)
.
modal
();
},
500
);
}
}
function
vizuPartici
(
id
){
$
(
"#modalVizuSubstituicao"
)
.
modal
(
'hide'
);
setTimeout
(()
=>
{
$
(
"#modalVizuParticipanteSub"
+
id
)
.
modal
();
},
500
);
}
function
vizuJustificativa
(
texto
){
function
vizuJustificativa
(
texto
){
$
(
"#modalVizuSubstituicao"
)
.
modal
(
'hide'
);
$
(
"#modalVizuSubstituicao"
)
.
modal
(
'hide'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment