App.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template lang="pug">
  2. .pos
  3. form-wizard(title='' subtitle='' finishButtonText='Finalizar' color='#7c7bad' nextButtonText='Continuar' backButtonText='Volver' @on-complete='createSale')
  4. tab-content(title="Qué productos necesita?")
  5. product-step
  6. tab-content(title="Quién es el cliente?")
  7. customer-step
  8. tab-content(title="Cómo quieres pagar?")
  9. payment-method-step
  10. tab-content(title="")
  11. payment-amount-step
  12. </template>
  13. <script>
  14. import { mapActions } from 'vuex'
  15. import { FormWizard, TabContent } from 'vue-form-wizard'
  16. import 'vue-form-wizard/dist/vue-form-wizard.min.css'
  17. import ProductStep from '@@/steps/Product'
  18. import CustomerStep from '@@/steps/Customer'
  19. import PaymentMethodStep from '@@/steps/PaymentMethod'
  20. import PaymentAmountStep from '@@/steps/PaymentAmount'
  21. export default {
  22. components: {
  23. FormWizard,
  24. TabContent,
  25. ProductStep,
  26. CustomerStep,
  27. PaymentMethodStep,
  28. PaymentAmountStep
  29. },
  30. methods: mapActions([
  31. 'initSale',
  32. 'createSale'
  33. ]),
  34. mounted() {
  35. this.initSale()
  36. }
  37. }
  38. </script>
  39. <style lang="sass">
  40. @import './assets/variables'
  41. .pos
  42. width: 100%
  43. height: 100%
  44. position: absolute
  45. .vue-form-wizard
  46. width: 100%
  47. height: 100%
  48. padding-bottom: 0
  49. .wizard-header
  50. display: none
  51. .wizard-navigation
  52. width: 100%
  53. height: 100%
  54. .wizard-progress-with-circle
  55. top: 35px
  56. .wizard-icon-circle
  57. width: 60px
  58. height: 60px
  59. .wizard-tab-content
  60. width: 100%
  61. height: calc(100% - 82px)
  62. padding: 0
  63. overflow: hidden
  64. .wizard-tab-container
  65. width: calc(100% - 20px)
  66. height: calc(100% - 20px)
  67. margin: 10px
  68. .pos-step
  69. width: 100%
  70. height: 100%
  71. background: #fff
  72. .wizard-card-footer
  73. width: 100%
  74. height: 50px
  75. position: absolute
  76. bottom: 0
  77. .wizard-btn
  78. width: 160px
  79. height: 40px
  80. border-radius: 0
  81. box-shadow: none
  82. border: none
  83. &:hover, &:focus
  84. background: $app-main-color
  85. </style>