Frontend de crear Subpedido muestra las coincidencias de tu barrio únicamente

This commit is contained in:
nat 2022-02-22 11:44:52 -03:00
parent 6b9aa7a995
commit 546b901a05
1 changed files with 6 additions and 1 deletions

View File

@ -11,7 +11,12 @@ Vue.component('subpedido-select', {
},
methods: {
onType() {
axios.get("/api/subpedidos?nombre=" + this.subpedido).then(response => {
axios.get("/api/subpedidos", {
params: {
nombre: this.subpedido,
grupo_de_compra: this.gdcid
}
}).then(response => {
this.subpedidosExistentes = response.data
});
},