123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <template lang="pug">
- li.cart-item
- h3.item-name {{ item.name || 'Sin Nombre' }}
- input.item-quantity(type='number' min='1' :value='item.quantity')
- span.item-x x
- span.item-price {{ (item.price || 1) | currency(...options) }}
- span.item-equals =
- span.item-subtotal {{ ((item.price || 1) * (item.quantity || 1)) | currency(...options) }}
- .cart-item-options-wrapper
- .cart-item-options
- .cart-item-option(class='fa fa-plus' @click='onClickIncrement')
- .cart-item-option(class='fa fa-minus' @click='onClickDecrement')
- .cart-item-option(class='fa fa-trash' @click='onClickDelete')
- </template>
- <script>
- export default {
- props: {
- index: {
- type: Number,
- default: -1,
- required: true
- },
- item: {
- type: Object,
- default: null
- },
- options: {
- type: Object,
- default: {
- symbol: '$',
- position: 'before',
- thousandsSeparator: '.',
- decimalPlaces: 2,
- decimalSeparator: ','
- }
- }
- },
- watch: {
- item: {
- handler(value) {
- this.onChange(value)
- },
- deep: true,
- immediate: true
- }
- },
- methods: {
- onChange(item) {
- this.$emit('onChange', item)
- },
- onClickIncrement() {
- this.$emit('onClickIncrement', this.item)
- },
- onClickDecrement() {
- this.$emit('onClickDecrement', this.item)
- },
- onClickDelete() {
- this.$emit('onClickDelete', this.item)
- }
- }
- }
- </script>
- <style lang="sass">
- @import '../../assets/variables'
- .cart-item
- width: 100%
- height: 90px
- list-style: none outside none
- border-bottom: 1px solid $app-border-color
- box-sizing: border-box
- position: relative
- &:nth-child(1)
- border-top: 1px solid $app-border-color
- &:hover
- transition-duration: 1000ms
- border-bottom: 2px solid $app-main-color
- .item-name
- width: 100%
- height: 20px
- margin: 10px 0 5px 0
- float: left
- font-size: 8pt
- display: inline-block
- .item-quantity
- width: 50px
- height: 28px
- margin-top: 6px
- text-align: right
- float: left
- display: inline-block
- .item-x
- width: 20px
- height: 20px
- margin-top: 12px
- text-align: right
- float: left
- display: inline-block
- .item-price
- width: 80px
- height: 20px
- margin-top: 12px
- text-align: right
- float: left
- display: inline-block
- .item-equals
- width: 20px
- height: 20px
- margin-top: 12px
- text-align: center
- float: left
- display: inline-block
- .item-subtotal
- width: 100px
- height: 20px
- margin-top: 12px
- text-align: right
- font-weight: bold
- display: inline-block
- .cart-item-options-wrapper
- width: 100%
- height: 20px
- position: absolute
- bottom: 0
- display: flex
- justify-content: center
- .cart-item-options
- width: 90px
- height: 20px
- border: 1px solid #d3d3d3
- border-bottom: none
- display: flex
- justify-content: center
- .cart-item-option
- width: 18px
- height: 18px
- margin: 0 5px
- color: #666
- &:hover
- cursor: pointer
- &.fa
- padding-left: 2px
- line-height: 20px
- &.fa-plus:hover
- color: #2196f3
- &.fa-minus:hover
- color: #ffc107
- &.fa-trash:hover
- color: #f44336
- </style>
|