|
@@ -1,24 +1,27 @@
|
|
|
<template lang="pug">
|
|
|
- form-wizard(title="" subtitle="" nextButtonText="Continuar" backButtonText="Volver" finishButtonText="Finalizar" color="#7c7bad")
|
|
|
- tab-content(title="Agregue productos al carrito")
|
|
|
- .pos
|
|
|
- .products-container
|
|
|
- products-searcher
|
|
|
- products-grid(:symbol="currency.symbol")
|
|
|
- .cart-container
|
|
|
- cart-total(:total="total" :symbol="currency.symbol")
|
|
|
- cart-items(:symbol="currency.symbol")
|
|
|
- tab-content(title="Seleccione un cliente")
|
|
|
- customer-searcher
|
|
|
- customers-grid
|
|
|
- tab-content(title="Vea un resumen de su operación")
|
|
|
- summary-display
|
|
|
+ .app
|
|
|
+ form-wizard(title="" subtitle="" nextButtonText="Continuar" backButtonText="Volver" finishButtonText="Finalizar" color="#7c7bad")
|
|
|
+ tab-content(title="Agregue productos al carrito")
|
|
|
+ .pos
|
|
|
+ .products-container
|
|
|
+ products-searcher
|
|
|
+ products-grid(:symbol="currency.symbol")
|
|
|
+ .cart-container
|
|
|
+ cart-total(:total="total" :symbol="currency.symbol")
|
|
|
+ cart-items(:symbol="currency.symbol")
|
|
|
+ tab-content(title="Seleccione un cliente")
|
|
|
+ customer-searcher
|
|
|
+ customers-grid
|
|
|
+ tab-content(title="Vea un resumen de su operación")
|
|
|
+ summary-display
|
|
|
+ loader
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import { FormWizard, TabContent } from 'vue-form-wizard'
|
|
|
import 'vue-form-wizard/dist/vue-form-wizard.min.css'
|
|
|
|
|
|
+ import Loader from '@/components/Loader'
|
|
|
import ProductsSearcher from '@/components/ProductsSearcher'
|
|
|
import ProductsGrid from '@/components/ProductsGrid'
|
|
|
import CartTotal from '@/components/CartTotal'
|
|
@@ -35,6 +38,7 @@
|
|
|
components: {
|
|
|
'form-wizard': FormWizard,
|
|
|
'tab-content': TabContent,
|
|
|
+ 'loader': Loader,
|
|
|
'products-searcher': ProductsSearcher,
|
|
|
'products-grid': ProductsGrid,
|
|
|
'cart-total': CartTotal,
|