diff --git a/components/admin/CrearInfraccion.vue b/components/admin/CrearInfraccion.vue index 29d9cae..80d279d 100644 --- a/components/admin/CrearInfraccion.vue +++ b/components/admin/CrearInfraccion.vue @@ -110,6 +110,7 @@ export default { .then((res) => { this.updateIsLoading(false) this.$alertsGenericos.imprimirMensaje(this.$buefy, res.data.message) + this.obtenerCatalogoInfracciones() this.infraccion = '' }) .catch((err) => { diff --git a/components/admin/CrearInstiProgra.vue b/components/admin/CrearInstiProgra.vue index c5c7efb..36f2d92 100644 --- a/components/admin/CrearInstiProgra.vue +++ b/components/admin/CrearInstiProgra.vue @@ -107,6 +107,7 @@ export default { .then((res) => { this.updateIsLoading(false) this.$alertsGenericos.imprimirMensaje(this.$buefy, res.data.message) + this.obtenerCatalogoProgramas() this.programa = '' }) .catch((err) => { diff --git a/components/admin/CrearModelo.vue b/components/admin/CrearModelo.vue index f0166b5..ace994b 100644 --- a/components/admin/CrearModelo.vue +++ b/components/admin/CrearModelo.vue @@ -105,6 +105,7 @@ export default { .then((res) => { this.updateIsLoading(false) this.$alertsGenericos.imprimirMensaje(this.$buefy, res.data.message) + this.obtenerCatalogoModelo() this.modelo = '' }) .catch((err) => { diff --git a/components/admin/CrearTipoCarrito.vue b/components/admin/CrearTipoCarrito.vue index 3a0975a..d20c42d 100644 --- a/components/admin/CrearTipoCarrito.vue +++ b/components/admin/CrearTipoCarrito.vue @@ -131,6 +131,7 @@ export default { .then((res) => { this.updateIsLoading(false) this.$alertsGenericos.imprimirMensaje(this.$buefy, res.data.message) + this.obtenerCatalogoTipoCarrito() this.tipoCarrito = '' this.letra = '' }) diff --git a/components/admin/CrearTipoEntrada.vue b/components/admin/CrearTipoEntrada.vue index 68992cd..b38a19c 100644 --- a/components/admin/CrearTipoEntrada.vue +++ b/components/admin/CrearTipoEntrada.vue @@ -110,6 +110,7 @@ export default { .then((res) => { this.updateIsLoading(false) this.$alertsGenericos.imprimirMensaje(this.$buefy, res.data.message) + this.obtenerCatalogoTipoEntrada() this.tipoEntrada = '' }) .catch((err) => { diff --git a/components/admin/CrearTipoUsuario.vue b/components/admin/CrearTipoUsuario.vue index d65c59e..aed691b 100644 --- a/components/admin/CrearTipoUsuario.vue +++ b/components/admin/CrearTipoUsuario.vue @@ -103,6 +103,7 @@ export default { .then((res) => { this.updateIsLoading(false) this.$alertsGenericos.imprimirMensaje(this.$buefy, res.data.message) + this.obtenerCatalogoTipoUsuario() this.tipoUsuario = '' }) .catch((err) => {