You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

225 lines
5.8 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div v-show="show" :class="[
  3. 'optionItem',
  4. index <= 2
  5. ? 'tw-pb-[10px] tw-mb-[10px] tw-border-0 tw-border-b tw-border-solid tw-border-neutrals-100'
  6. : '',
  7. seeMore
  8. ? 'tw-pb-[10px] tw-mb-[10px] tw-border-0 tw-border-b tw-border-solid tw-border-neutrals-100'
  9. : '',
  10. ]">
  11. <div class="tw-flex tw-flex-col">
  12. <div :class="['tw-grid tw-grid-cols-1 md:tw-grid-cols-[auto_auto_168px] tw-gap-[10px] tw-flex tw-items-center']">
  13. <h4 class="t12 tw-mb-[4px] tw-text-neutrals-900 md:t16 tw-font-normal">
  14. {{ item.TruckName }} {{$t("Ton truck")}}
  15. </h4>
  16. <!-- <div
  17. class="t12 tw-mb-[4px] tw-text-neutrals-500 md:t16 md:tw-font-normal"
  18. >
  19. {{ $t("Notes : Inclusive Of oooooooooo") }}
  20. </div> -->
  21. <div class="t12 tw-mb-[4px] tw-text-neutrals-600 md:t14 tw-font-normal">
  22. {{$t("Maximum load")}}{{item.MaxWeight}}{{$t("Car size")}}{{item.Size}}
  23. </div>
  24. <div class="tw-flex tw-justify-between tw-items-center">
  25. <!-- <div class="t12 tw-mr-[35px] tw-text-neutrals-900 tw-hidden md:tw-block md:t16 md:tw-font-normal">
  26. ${{ price.toLocaleString() }} {{ currency }}
  27. </div> -->
  28. <button :class="[
  29. 'custom-button button-reduce tw-text-transparent tw-p-[6px] tw-rounded-[8px] tw-max-w-[24px] tw-max-h-[24px] tw-mr-[16px] md:tw-max-w-[30px] md:tw-max-h-[30px] md:tw-mr-[42px]',
  30. value == 0 ? 'tw-bg-neutrals-200' : 'tw-bg-primary-default',
  31. ]" @click="reduce()">
  32. reduce
  33. </button>
  34. <div class="tw-min-w-[24px] tw-text-center md:t18 md:tw-font-normal">
  35. {{ value }}
  36. </div>
  37. <button :class="[
  38. 'custom-button button-add tw-text-transparent tw-p-[6px] tw-rounded-[8px] tw-max-w-[24px] tw-max-h-[24px] tw-ml-[16px] md:tw-max-w-[30px] md:tw-max-h-[30px] md:tw-text-medium md:tw-ml-[42px]',
  39. ]" @click="add()">
  40. add
  41. </button>
  42. </div>
  43. </div>
  44. <div class="tw-flex tw-justify-end tw-py-[20px]">
  45. <div class="element">
  46. <div class="tw-flex tw-justify-between tw-items-center">
  47. <label class="tw-font-normal t14 md:t16"><span>{{ $t("The number of lift tailgate trucks")}}</span></label>
  48. <select :class="['tw-pr-[40px] tw-max-w-[200px]']" @change="inputVal" v-model="selectValue"
  49. >
  50. <option :value="0">{{ $t("Select option") }}</option>
  51. <option v-for="item in tailgates" :key="item" :value="item">{{ item }}</option>
  52. </select>
  53. </div>
  54. </div>
  55. </div>
  56. <div class="tw-border-0 tw-border-b tw-border-solid tw-border-neutrals-200 tw-mb-[20px]"></div>
  57. </div>
  58. </div>
  59. </template>
  60. <script>
  61. export default {
  62. props: {
  63. index: {
  64. type: Number,
  65. },
  66. item: {
  67. type: Object,
  68. },
  69. hasValue: {
  70. type: Number,
  71. },
  72. seeMore: {
  73. type: Boolean,
  74. },
  75. },
  76. data() {
  77. return {
  78. value: 0,
  79. currentPirce: "US",
  80. selectValue: 0,
  81. tailgate: 10,
  82. };
  83. },
  84. computed: {
  85. currency() {
  86. return this.$store.getters.getCurrency;
  87. },
  88. show() {
  89. if (this.index + 1 <= 3) {
  90. return true;
  91. } else {
  92. if (this.seeMore == true) {
  93. return true;
  94. } else {
  95. return false;
  96. }
  97. }
  98. },
  99. tailgates(){
  100. if(this.value == 0){
  101. this.selectValue = 0;
  102. return 0;
  103. }
  104. return this.tailgate;
  105. }
  106. },
  107. watch: {
  108. hasValue: {
  109. handler: function () {
  110. if (this.hasValue == null) {
  111. this.value = 0;
  112. this.selectValue = 0;
  113. }
  114. },
  115. },
  116. choicesIndex: {
  117. handler: function (newVal, oldVal) {
  118. if (newVal !== oldVal) {
  119. this.value = 0;
  120. }
  121. },
  122. },
  123. item: {
  124. handler: function () {
  125. let vm = this;
  126. vm.$nextTick(function () {
  127. vm.$emit("selected", {
  128. number: this.value,
  129. id: this.item.TruckID,
  130. name: this.item.TruckName,
  131. maxWeight: this.item.MaxWeight,
  132. size: this.item.Size,
  133. });
  134. })
  135. },
  136. }
  137. },
  138. methods: {
  139. add() {
  140. this.value += 1;
  141. if (this.value !== 0) {
  142. this.$emit("disabled", this.index);
  143. }
  144. this.$emit("selected", {
  145. number: this.value,
  146. id: this.item.TruckID,
  147. name: this.item.TruckName,
  148. maxWeight: this.item.MaxWeight,
  149. size: this.item.Size,
  150. });
  151. },
  152. reduce() {
  153. if (this.value !== 0) {
  154. this.value -= 1;
  155. this.$emit("selected", {
  156. number: this.value,
  157. id: this.item.TruckID,
  158. name: this.item.TruckName,
  159. maxWeight: this.item.MaxWeight,
  160. size: this.item.Size,
  161. });
  162. }
  163. },
  164. inputVal(){
  165. this.$emit("change", {
  166. number: this.selectValue,
  167. id: this.item.TruckID,
  168. name: this.item.TruckName,
  169. });
  170. }
  171. },
  172. };
  173. </script>
  174. <style lang="scss" scoped>
  175. .custom-button {
  176. background-position: center;
  177. background-repeat: no-repeat;
  178. background-size: 12px;
  179. }
  180. .button {
  181. &-reduce {
  182. background-image: url("~/assets/svg/reduce.svg");
  183. background-color: #e5e5e5;
  184. }
  185. &-add {
  186. background-image: url("~/assets/svg/add.svg");
  187. background-color: #f48800;
  188. }
  189. }
  190. .bounce-enter-active {
  191. animation: bounce-in 0.3s ease-out;
  192. }
  193. .bounce-leave-active {
  194. animation: bounce-in 0.3s reverse;
  195. }
  196. @keyframes bounce-in {
  197. 0% {
  198. opacity: 0;
  199. }
  200. 50% {
  201. opacity: 0.5;
  202. }
  203. 100% {
  204. opacity: 1;
  205. }
  206. }
  207. select {
  208. -moz-appearance: none;
  209. /* Firefox */
  210. -webkit-appearance: none;
  211. /* Safari and Chrome */
  212. appearance: none;
  213. background-image: url("~/assets/svg/down-arrow.svg");
  214. background-size: 9px 6px;
  215. background-position: right 20px center;
  216. background-repeat: no-repeat;
  217. }
  218. </style>