Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Amparo
Amparo-frontend
Commits
687fe912
Commit
687fe912
authored
1 year ago
by
Martin Ferreira
Browse files
Options
Download
Plain Diff
Merge branch 'atualizacoes' into 'dev'
ATT DEV See merge request
!39
parents
e497c949
24a0861c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
src/AppRoutes.tsx
+3
-0
src/AppRoutes.tsx
src/components/InputFile/InputFile.css
+3
-3
src/components/InputFile/InputFile.css
src/components/Modal/Components/Description/Description.css
+1
-1
src/components/Modal/Components/Description/Description.css
src/pages/ExamesPendentes/ExamesPendentes.tsx
+3
-0
src/pages/ExamesPendentes/ExamesPendentes.tsx
src/routes/constans.ts
+1
-0
src/routes/constans.ts
with
11 additions
and
4 deletions
+11
-4
src/AppRoutes.tsx
View file @
687fe912
...
...
@@ -13,6 +13,7 @@ import HomeMedico from './pages/HomeMedico/HomeMedico';
import
VisualizacaoPerfilMedico
from
'
./pages/VisualizarPerfilMedico/VisualizarPerfilMedico
'
;
import
MenuMedicamentos
from
'
./pages/MenuMedicamentos/MenuMedicamentos
'
;
import
ListaMedicamentos
from
'
./pages/ListaMedicamentos/ListaMedicamentos
'
;
import
ExamesPendentes
from
'
./pages/ExamesPendentes/ExamesPendentes
'
;
export
default
function
AppRoutes
()
{
return
(
...
...
@@ -52,6 +53,8 @@ export default function AppRoutes() {
path
=
{
ROUTES
.
LISTA_MEDICAMENTOS
()
}
element
=
{
<
ListaMedicamentos
/>
}
/>
<
Route
path
=
{
ROUTES
.
LISTA_EXAMES
()
}
element
=
{
<
ExamesPendentes
/>
}
/>
</
Routes
>
</
div
>
</
Router
>
...
...
This diff is collapsed.
Click to expand it.
src/components/InputFile/InputFile.css
View file @
687fe912
.file-input-label
{
display
:
flex
;
width
:
2
6
5px
;
height
:
75
px
;
padding
:
8px
1
9
px
;
width
:
25
0
px
;
height
:
60
px
;
padding
:
8px
1
5
px
;
justify-content
:
center
;
align-items
:
center
;
gap
:
10px
;
...
...
This diff is collapsed.
Click to expand it.
src/components/Modal/Components/Description/Description.css
View file @
687fe912
...
...
@@ -8,7 +8,7 @@
font-weight
:
500
;
line-height
:
normal
;
padding
:
10px
;
height
:
1
11
px
;
height
:
1
00
px
;
width
:
265px
;
border-radius
:
3px
;
outline
:
0
;
...
...
This diff is collapsed.
Click to expand it.
src/pages/ExamesPendentes/ExamesPendentes.tsx
View file @
687fe912
...
...
@@ -8,6 +8,7 @@ import Modal from '../../components/Modal/Modal';
import
DateModal
from
'
../../components/Modal/Components/DateModal/DateModal
'
;
import
Description
from
'
../../components/Modal/Components/Description/Description
'
;
import
CustomButton
from
'
../../components/Button/Button
'
;
import
InputFile
from
'
../../components/InputFile/InputFile
'
;
export
default
function
ExamesPendentes
()
{
const
[
isModalOpen
,
setIsModalOpen
]
=
useState
(
false
);
...
...
@@ -42,6 +43,8 @@ export default function ExamesPendentes() {
</
div
>
<
div
className
=
"description-button-modal"
>
<
Description
/>
<
InputFile
type
=
"image"
onChange
=
{
()
=>
{}
}
/>
<
InputFile
type
=
"pdf"
onChange
=
{
()
=>
{}
}
/>
<
CustomButton
variant
=
"contained"
label
=
"Salvar"
...
...
This diff is collapsed.
Click to expand it.
src/routes/constans.ts
View file @
687fe912
...
...
@@ -11,4 +11,5 @@ export const ROUTES = {
PERFIL_MEDICO
:
()
=>
'
/perfil/medico
'
,
MENU_MEDICAMENTOS
:
()
=>
'
/menu/medicamentos
'
,
LISTA_MEDICAMENTOS
:
()
=>
'
/lista/medicamentos
'
,
LISTA_EXAMES
:
()
=>
'
/lista/exames
'
,
};
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help