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
7c391855
Commit
7c391855
authored
Jun 01, 2021
by
Gabriel-31415
Browse files
ajste
parent
1ea62356
Changes
3
Show whitespace changes
Inline
Side-by-side
resources/views/evento/formulario/participantes.blade.php
View file @
7c391855
...
...
@@ -222,7 +222,7 @@
</div>
<div
class=
"col-6"
>
@component('componentes.input', ['label' => 'Celular'])
<input
type=
"
tel
"
class=
"form-control celular"
name=
"celular[]"
placeholder=
"Celular"
required
/>
<input
type=
"
number
"
class=
"form-control celular"
name=
"celular[]"
placeholder=
"Celular"
required
/>
@endcomponent
</div>
<div
class=
"col-md-12"
><h5>
Endereço
</h5></div>
...
...
resources/views/evento/formulario/proponente.blade.php
View file @
7c391855
...
...
@@ -45,7 +45,7 @@
</div>
<div
class=
"form-group col-md-6"
>
<label
for=
"pontuacaoPlanilha"
>
Valor da planilha de pontuação
<span
style=
"color: red; font-weight:bold"
>
*
</span></label>
<input
class=
"form-control @error('pontuacaoPlanilha') is-invalid @enderror"
type=
"
text
"
name=
"pontuacaoPlanilha"
<input
class=
"form-control @error('pontuacaoPlanilha') is-invalid @enderror"
type=
"
number
"
name=
"pontuacaoPlanilha"
value=
"{{old('pontuacaoPlanilha') !== null ? old('pontuacaoPlanilha') : (isset($rascunho) ? $rascunho->pontuacaoPlanilha : '')}}"
required
>
@error('pontuacaoPlanilha')
...
...
resources/views/evento/submeterTrabalho.blade.php
View file @
7c391855
...
...
@@ -460,13 +460,15 @@
for
(
let
index
=
0
;
index
<
cln
.
children
[
i
]
.
querySelectorAll
(
'input'
)
.
length
;
index
++
)
{
let
input
=
cln
.
children
[
i
]
.
querySelectorAll
(
'input'
)[
index
];
let
name
=
input
.
getAttributeNode
(
"name"
)
.
value
;
input
.
getAttributeNode
(
"name"
)
.
value
=
name
+
'['
+
contador
+
']'
;
name
=
name
.
replace
(
"["
,
""
);
name
=
name
.
replace
(
"]"
,
""
);
input
.
getAttributeNode
(
"name"
)
.
value
=
name
+
'[]'
;
// input.getAttributeNode("disabled").value = " ";
let
select
=
cln
.
children
[
i
]
.
querySelectorAll
(
'select'
)[
index
];
if
(
select
){
let
selectName
=
select
.
getAttributeNode
(
"name"
)
.
value
;
// console.log(select.getAttributeNode("name").value)
select
.
getAttributeNode
(
"name"
)
.
value
=
selectName
+
'[
'
+
contador
+
'
]'
;
select
.
getAttributeNode
(
"name"
)
.
value
=
selectName
+
'[]'
;
}
}
...
...
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