MoveLineCard.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <template lang="pug">
  2. .card-move-line(@click='onClick' :class="{ 'selected-move': isSelected }")
  3. h2.move-date Vencimiento {{ dateMaturity }}
  4. .move-amount
  5. .move-total
  6. h2.move-amount-label Total
  7. h2.move-total-value {{ debit | currency(currencyCompany.symbol)}}
  8. .move-total
  9. h2.move-amount-label Saldo
  10. h2.move-saldo-value {{ amountResidual | currency(currencyCompany.symbol)}}
  11. </template>
  12. <script>
  13. export default {
  14. props: {
  15. dateMaturity: {
  16. type: String,
  17. default: ''
  18. },
  19. debit: {
  20. type: Number,
  21. default: 0
  22. },
  23. amountResidual: {
  24. type: Number,
  25. default: 0
  26. },
  27. isSelected: {
  28. type: Boolean,
  29. default: true
  30. },
  31. currencyCompany: {
  32. type: Object,
  33. default: {
  34. name: '',
  35. symbol: '₲',
  36. rateSilent: 0,
  37. thousandsSeparator: '.',
  38. decimalSeparator: ',',
  39. decimalPlaces: 0
  40. }
  41. }
  42. },
  43. methods: {
  44. onClick() {
  45. this.$emit('onClick')
  46. }
  47. }
  48. }
  49. </script>
  50. <style lang="sass">
  51. @import '../../assets/variables'
  52. .card-move-line
  53. width: 245px
  54. height: 125px
  55. margin: 5px
  56. border: 1px solid #d3d3d3
  57. display: inline-block
  58. position: relative
  59. &.selected-move
  60. transition-duration: 300ms
  61. border-bottom: 3px solid $app-main-color
  62. &:hover
  63. cursor: pointer
  64. .move-date
  65. width: 100%
  66. height: 30px
  67. font-size: 12pt
  68. text-align: center
  69. margin-top: 25px
  70. position: absolute
  71. top: 0
  72. .move-amount
  73. width: 100%
  74. height: 70px
  75. padding-top: 5px
  76. margin: 0px
  77. position: absolute
  78. bottom: 0px
  79. .move-total
  80. width: calc(100% - 10px)
  81. height: 30px
  82. border-bottom: 1px solid $app-main-color
  83. margin-left: 5px
  84. margin-right: 5px
  85. .move-amount-label
  86. width: 75px
  87. height: 30px
  88. float: left
  89. // text-align: right
  90. font-size: 10pt
  91. font-weight: bold
  92. margin: 0px
  93. padding: 10px
  94. color: #ccc
  95. .move-total-value, .move-saldo-value
  96. width: calc(100% - 75px)
  97. float: right
  98. text-align: right
  99. font-size: 10pt
  100. font-weight: bold
  101. margin: 0px
  102. padding: 10px
  103. .move-total-value
  104. bottom: 23px
  105. .move-saldo-value
  106. bottom: 0
  107. </style>