ProductForm.vue 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template lang="pug">
  2. .product-form
  3. .form-header
  4. h2 {{ title }}
  5. hr
  6. form.form-display
  7. .form-item
  8. label.form-label Nombre
  9. input.form-input(v-model='product.name' autofocus)
  10. .form-item
  11. label.form-label Precio
  12. input.form-input(v-model='product.price')
  13. .form-item
  14. label.form-label Código de barras
  15. input.form-input(v-model='product.ean13')
  16. .form-actions
  17. button.form-action(@click='onAccept') Aceptar
  18. button.form-action(@click='onCancel') Cancelar
  19. </template>
  20. <script>
  21. export default {
  22. props: {
  23. title: String,
  24. default: ''
  25. },
  26. data() {
  27. return {
  28. product: {
  29. name: '',
  30. price: 0,
  31. ean13: ''
  32. }
  33. }
  34. },
  35. methods: {
  36. onAccept() {
  37. this.$emit('onAccept', this.product)
  38. },
  39. onCancel() {
  40. this.$emit('onCancel')
  41. }
  42. },
  43. mounted() {
  44. Object.assign(this.product, {
  45. name: '',
  46. price: 0,
  47. ean13: ''
  48. })
  49. }
  50. }
  51. </script>
  52. <style lang="sass">
  53. @import '../../assets/variables'
  54. .product-form
  55. width: 600px
  56. height: 100%
  57. .form-header
  58. margin-top: 30px
  59. h2
  60. font-size: 10pt
  61. color: $app-border-color
  62. margin-left: 15px
  63. hr
  64. margin: 0 15px
  65. .form-display
  66. width: 100%
  67. height: 100%
  68. padding: 15px
  69. .form-item
  70. width: 100%
  71. height: 45px
  72. margin-bottom: 10px
  73. .form-label
  74. width: 30%
  75. height: 45px
  76. font-size: 14pt
  77. .form-input
  78. width: 70%
  79. height: 45px
  80. font-size: 18pt
  81. border-radius: 0
  82. .form-actions
  83. float: right
  84. .form-action
  85. width: 150px
  86. height: 40px
  87. border: none
  88. box-shadow: none
  89. border-radius: 0
  90. margin-right: 5px
  91. background: $app-main-color
  92. color: $app-bg-color
  93. </style>