Arreglos post-merge
This commit is contained in:
parent
0b55fa8109
commit
10273e2159
|
@ -1,31 +0,0 @@
|
||||||
<template>
|
|
||||||
<div class="columns ml-3 mr-3">
|
|
||||||
<categorias-container :class="chismosaActiva ? 'hide-below-1024' : ''"></categorias-container>
|
|
||||||
<productos-container :class="chismosaActiva ? 'hide-below-1024' : ''"></productos-container>
|
|
||||||
<chismosa v-show="chismosaActiva"></chismosa>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import Chismosa from './Chismosa.vue';
|
|
||||||
import ProductosContainer from './ProductosContainer.vue';
|
|
||||||
import CategoriasContainer from './CategoriasContainer.vue';
|
|
||||||
|
|
||||||
export default {
|
|
||||||
componets: {
|
|
||||||
Chismosa,
|
|
||||||
ProductosContainer,
|
|
||||||
CategoriasContainer,
|
|
||||||
},
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
chismosaActiva: false,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
Event.$on('toggle-chismosa', (activa) => {
|
|
||||||
this.chismosaActiva = activa;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</script>
|
|
|
@ -5,7 +5,7 @@ export default {
|
||||||
props: {
|
props: {
|
||||||
caracteristica: Object
|
caracteristica: Object
|
||||||
},
|
},
|
||||||
data: {
|
data() {
|
||||||
gdc: undefined
|
gdc: undefined
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
<template>
|
||||||
|
<div class="columns ml-3 mr-3">
|
||||||
|
<pedidos-categorias-container :class="chismosaActiva ? 'hide-below-1024' : ''"></pedidos-categorias-container>
|
||||||
|
<pedidos-productos-container :class="chismosaActiva ? 'hide-below-1024' : ''"></pedidos-productos-container>
|
||||||
|
<pedidos-chismosa v-show="chismosaActiva"></pedidos-chismosa>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
chismosaActiva: false,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
Event.$on('toggle-chismosa', (activa) => {
|
||||||
|
this.chismosaActiva = activa;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
|
@ -34,7 +34,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
</tfoot>
|
</tfoot>
|
||||||
<tbody>
|
<tbody>
|
||||||
<producto-row v-for="producto in productos" :producto="producto" :key="producto.id"></producto-row>
|
<pedidos-producto-row v-for="producto in productos" :producto="producto" :key="producto.id"></pedidos-producto-row>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<p class="has-text-centered" v-show="!mostrar_tabla">
|
<p class="has-text-centered" v-show="!mostrar_tabla">
|
||||||
|
@ -99,4 +99,4 @@
|
||||||
max-height: 81vh;
|
max-height: 81vh;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -1,11 +1,6 @@
|
||||||
<script>
|
<script>
|
||||||
import ProductoCantidad from './Producto/ProductoCantidad.vue';
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "ProductoCard",
|
name: "ProductoCard",
|
||||||
components: {
|
|
||||||
ProductoCantidad,
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
producto: Object
|
producto: Object
|
||||||
},
|
},
|
||||||
|
@ -73,7 +68,7 @@ export default {
|
||||||
</div>
|
</div>
|
||||||
<footer class="columns">
|
<footer class="columns">
|
||||||
<div class="column is-three-quarters">
|
<div class="column is-three-quarters">
|
||||||
<producto-cantidad :producto="producto"></producto-cantidad>
|
<pedidos-producto-cantidad :producto="producto"></pedidos-producto-cantidad>
|
||||||
</div>
|
</div>
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<p class="subtitle is-7 is-hidden-mobile" v-if="enChismosa !== 0">{{ enChismosa }} en chismosa</p>
|
<p class="subtitle is-7 is-hidden-mobile" v-if="enChismosa !== 0">{{ enChismosa }} en chismosa</p>
|
||||||
|
|
|
@ -2,18 +2,13 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ this.producto.nombre }}</td>
|
<td>{{ this.producto.nombre }}</td>
|
||||||
<td class="has-text-right">
|
<td class="has-text-right">
|
||||||
<producto-cantidad :producto="producto"></producto-cantidad>
|
<pedidos-producto-cantidad :producto="producto"></pedidos-producto-cantidad>
|
||||||
</td>
|
</td>
|
||||||
<td class="has-text-right">{{ Math.ceil(this.producto.pivot.total) }}</td>
|
<td class="has-text-right">{{ Math.ceil(this.producto.pivot.total) }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import ProductoCantidad from './Producto/ProductoCantidad.vue';
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
|
||||||
ProductoCantidad,
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
producto: Object
|
producto: Object
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,16 +1,14 @@
|
||||||
<template>
|
<template>
|
||||||
<div v-show="visible" class="column">
|
<div v-show="visible" class="column">
|
||||||
<div class="columns is-multiline is-mobile">
|
<div class="columns is-multiline is-mobile">
|
||||||
<producto-card v-for="(producto,i) in productos" :key="i" :producto="producto">
|
<pedidos-producto-card v-for="(producto,i) in productos" :key="i" :producto="producto">
|
||||||
</producto-card><!-- END BLOCK COLUMN -->
|
</pedidos-producto-card><!-- END BLOCK COLUMN -->
|
||||||
</div><!-- END COLUMNS -->
|
</div><!-- END COLUMNS -->
|
||||||
</div><!-- END CONTAINER -->
|
</div><!-- END CONTAINER -->
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import ProductoCard from "./ProductoCard.vue";
|
|
||||||
export default {
|
export default {
|
||||||
components: {ProductoCard},
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
productos: [],
|
productos: [],
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
@extends('layouts.app')
|
@extends('layouts.app')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<pedido-body></pedido-body>
|
<pedidos-body></pedidos-body>
|
||||||
<devoluciones-modal></devoluciones-modal>
|
<pedidos-devoluciones-modal></pedidos-devoluciones-modal>
|
||||||
@endsection
|
@endsection
|
||||||
|
|
Loading…
Reference in New Issue