-
Notifications
You must be signed in to change notification settings - Fork 0
/
baja_productos.html
118 lines (105 loc) · 4.2 KB
/
baja_productos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name="description" content="Sitio web de adopción de mascotas">
<title>Adóptame - Admin</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel="icon" type="image/jpg" href="img/favicon/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon/favicon-16x16.png">
<link rel='stylesheet' type='text/css' media='screen' href='css/styles_admin.css'>
<script>
var isLoggedIn = localStorage.getItem('isLoggedIn');
var username = localStorage.getItem('username');
if (!isLoggedIn) {
location.href = 'login.html';
}
</script>
</head>
<body>
<div id="header_admin"></div>
<h3>Baja de productos</h3><br>
<table>
<thead>
<tr>
<th>Código</th>
<th>Descripción</th>
<th>Cantidad</th>
<th align="right">Precio</th>
<th>Acciones</th>
</tr>
</thead>
<tbody>
<tr v-for="producto in productos">
<td>{{ producto.codigo }}</td>
<td>{{ producto.descripcion }}</td>
<td align="right">{{ producto.cantidad }}</td>
<td align="right">{{ producto.precio }}</td>
<td><button @click="eliminarProducto(producto.codigo)">Eliminar</button></td>
</tr>
</tbody>
</table>
<br>
<div class="contenedor-centrado">
<a href="admin.html">Menú principal</a>
</div>
<script src="https://unpkg.com/vue@next"></script>
<script>
const app = Vue.createApp({
data() {
return {
productos: []
}
},
methods: {
obtenerProductos() {
// const URL = "http://127.0.0.1:5000/"
const URL = "https://fabianescobar.pythonanywhere.com/"
fetch(URL + 'productos')
.then(response => {
if (response.ok) {
return response.json()
} else {
throw new Error('Error al obtener los productos.')
}
})
.then(data => {
this.productos = data
})
.catch(error => {
console.log('Error:', error)
alert('Error al obtener los productos.')
})
},
eliminarProducto(codigo) {
// const URL = "http://127.0.0.1:5000/"
const URL = "https://fabianescobar.pythonanywhere.com/"
fetch(URL + `productos/${codigo}`, { method: 'DELETE' })
.then(response => {
if (response.ok) {
this.productos = this.productos.filter(producto => producto.codigo !== codigo)
console.log('Producto eliminado correctamente.')
}
})
.catch(error => {
console.log('Error:', error)
alert('Error al eliminar el producto.')
})
}
},
mounted() {
this.obtenerProductos()
}
})
app.mount('body')
</script>
<div id="footer_admin"></div>
<script src="https://code.jquery.com/jquery-3.6.4.min.js"
integrity="sha256-oP6HI9z1XaZNBrJURtCoUT5SUnxFr8s3BzRl+cbzUq8=" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/84ee914179.js" crossorigin="anonymous"></script>
<script src="js/scripts_admin.js"></script>
</body>
</html>