cartcontrol.vue 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <template>
  2. <div class="cartcontrol">
  3. <transition name="move">
  4. <div class="cart-decrease" v-show="food.count>0" @click.stop.prevent="decreaseCart">
  5. <span class="inner icon-remove_circle_outline"></span>
  6. </div>
  7. </transition>
  8. <div class="cart-count" v-show="food.count>0">{{food.count}}</div>
  9. <div class="cart-add icon-add_circle" @click.stop.prevent="addCart"></div>
  10. </div>
  11. </template>
  12. <script type="text/ecmascript-6">
  13. import Vue from 'vue'
  14. export default {
  15. props: {
  16. food: {
  17. type: Object
  18. }
  19. },
  20. methods: {
  21. addCart (event) {
  22. if (!event._constructed) {
  23. return
  24. }
  25. if (!this.food.count) {
  26. Vue.set(this.food, 'count', 1)
  27. } else {
  28. this.food.count++
  29. }
  30. this.$emit('add', event.target)
  31. },
  32. decreaseCart (event) {
  33. if (!event._constructed) {
  34. return
  35. }
  36. if (this.food.count) {
  37. this.food.count--
  38. }
  39. }
  40. }
  41. }
  42. </script>
  43. <style lang="scss" scoped>
  44. .cartcontrol {
  45. font-size: 0;
  46. .cart-decrease {
  47. display: inline-block;
  48. padding: 6px;
  49. opacity: 1;
  50. transform: translate3d(0, 0, 0);
  51. }
  52. .inner {
  53. display: inline-block;
  54. line-height: 24px;
  55. font-size: 24px;
  56. color: rgb(0, 160, 220);
  57. transition: all 0.4s linear;
  58. transform: rotate(0);
  59. }
  60. &.move-enter-active, &.move-leave-active {
  61. transition: all 0.4s linear;
  62. }
  63. &.move-enter, &.move-leave-active {
  64. opacity: 0;
  65. transform: translate3d(24px, 0, 0);
  66. }
  67. .inner {
  68. transform: rotate(180deg);
  69. }
  70. .cart-count {
  71. display: inline-block;
  72. vertical-align: top;
  73. width: 12px;
  74. padding-top: 6px;
  75. line-height: 24px;
  76. text-align: center;
  77. font-size: 10px;
  78. color: rgb(147, 153, 159);
  79. }
  80. .cart-add {
  81. display: inline-block;
  82. padding: 6px;
  83. line-height: 24px;
  84. font-size: 24px;
  85. color: rgb(0, 160, 220);
  86. }
  87. }
  88. </style>