-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
136 lines (133 loc) · 6.18 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Pacientes</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css"
integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<div id="appPacientes" class="container">
<!-- Formulario para añadir pacientes -->
<section class="form">
<form action="" class="text-center">
<input v-model="nombre" @keyup.enter="crearPaciente" type="text" class="form-control"
placeholder="Nombre">
<input v-model="edad" @keyup.enter="crearPaciente" type="number" name="edad" placeholder="Edad"
class="form-control">
<!-- Botón para añadir -->
<input @click="crearPaciente" type="button" value="Añadir" class="btn btn-success">
</form>
</section>
<!-- Tabla donde se muestran los datos -->
<section class="data">
<caption>Pacientes</caption>
<table class="table">
<thead>
<tr>
<th scope="col">id</th>
<th scope="col">Nombre</th>
<th scope="col">Edad</th>
<th></th>
</tr>
</thead>
<tbody>
<tr v-for="(paciente, index) in pacientes">
<td>{{ paciente.id }}</td>
<td>
<span v-if="formActualizar && idActualizar == index">
<!-- Formulario para actualizar -->
<input v-model="nombreActualizar" type="text" class="form-control">
</span>
<span v-else>
<!-- Dato nombre -->
{{ paciente.nombre }}
</span>
</td>
<td>
<span v-if="formActualizar && idActualizar == index">
<!-- Formulario para actualizar -->
<input v-model="edadActualizar" type="text" class="form-control">
</span>
<span v-else>
<!-- Dato edad -->
{{ paciente.edad }}
</span>
</td>
<td>
<!-- Botón para guardar la información actualizada -->
<span v-if="formActualizar && idActualizar == index">
<button @click="guardarActualizacion(index)" class="btn btn-success">Guardar</button>
</span>
<span v-else>
<!-- Botón para mostrar el formulario de actualizar -->
<button @click="verFormActualizar(index)" class="btn btn-warning">Actualizar</button>
<!-- Botón para borrar -->
<button @click="borrarPaciente(index)" class="btn btn-danger">Borrar</button>
</span>
</td>
</tr>
</tbody>
</table>
</section>
</div>
<script>
document.addEventListener('DOMContentLoaded', function () {
new Vue({
el: '#appPacientes',
data: {
// Input nombre
nombre: '',
// Input edad
edad: '',
// Ver o no ver el formulario de actualizar
formActualizar: false,
// La posición de tu lista donde te gustaría actualizar
idActualizar: -1,
// Input nombre dentro del formulario de actualizar
nombreActualizar: '',
// Input edad dentro del formulario de actualizar
edadActualizar: '',
// Lista de pacientes
pacientes: []
},
methods: {
crearPaciente: function () {
// Anyadimos a nuestra lista
this.pacientes.push({
id: + new Date(),
nombre: this.nombre,
edad: this.edad
});
// Vaciamos el formulario de añadir
this.nombre = '';
this.edad = '';
},
verFormActualizar: function (paciente_id) {
// Antes de mostrar el formulario de actualizar, rellenamos sus campos
this.idActualizar = paciente_id;
this.nombreActualizar = this.pacientes[paciente_id].nombre;
this.edadActualizar = this.pacientes[paciente_id].edad;
// Mostramos el formulario
this.formActualizar = true;
},
borrarPaciente: function (paciente_id) {
// Borramos de la lista
this.pacientes.splice(paciente_id, 1);
},
guardarActualizacion: function (paciente_id) {
// Ocultamos nuestro formulario de actualizar
this.formActualizar = false;
// Actualizamos los datos
this.pacientes[paciente_id].nombre = this.nombreActualizar;
this.pacientes[paciente_id].edad = this.edadActualizar;
}
}
});
});
</script>
</body>
</html>