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.

104 lines
2.9 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div class="booking-info-item tw-p-[15px] tw-mb-[20px] tw-bg-neutrals-0 tw-rounded-xl xl:tw-p-[20px]">
  3. <div :class="[
  4. 'info-content',
  5. ' tw-flex',
  6. 'tw-justify-start',
  7. 'tw-items-start',
  8. ' -tw-mx-[7px]',
  9. 'xl:-tw-mx-[8px]',
  10. ]">
  11. <div class="element content-img tw-max-w-[52px] tw-px-[7px] md:tw-max-w-[116px] xl:tw-px-[8px]">
  12. <img class="tw-rounded" :src="info.preview_image" />
  13. </div>
  14. <div class="element content-text tw-px-[7px] xl:tw-px-[8px]">
  15. <div class="confirmed t18 tw-text-[#7997ff] tw-font-medium tw-mb-[12px]">
  16. {{ $t('Awaiting Confirmation') }}
  17. </div>
  18. <h3 class="t12 tw-font-bold tw-mb-[10px] xl:tw-text-[16px] xl:tw-leading-[21px]">
  19. {{ info.name }}
  20. </h3>
  21. <div class="id tw-body-5 tw-mb-[10px]">#{{ orderStatus.bookingNo }}</div>
  22. <template v-if="info.bookingItems && info.bookingItems.length>0">
  23. <div class="detail tw-body-5 tw-mb-[10px]" v-for="(item,index) in info.bookingItems" :key="index">
  24. {{ item }}
  25. </div>
  26. </template>
  27. <div v-show="info.exhibitionName" class="date tw-body-5 tw-mb-[10px]">
  28. {{ $t('Exhibition Name') }}{{ info.exhibitionName }}
  29. </div>
  30. <div v-show="orderStatus.service_date" class="date tw-body-5 tw-mb-[10px]">
  31. {{ $t('Service Date:') }}{{ orderStatus.service_date }}{{ $t('(Local time)') }}
  32. </div>
  33. <div class="date tw-body-5 tw-mb-[10px]">
  34. {{ $t('Booking Date:') }}{{ orderStatus.created_at }}
  35. </div>
  36. <div class="total t14 tw-font-bold tw-text-primary-1">${{ total }} {{ orderStatus.currency }}</div>
  37. </div>
  38. </div>
  39. </div>
  40. </template>
  41. <script>
  42. import elementTextarea from "@/components/newComponent/form/ElementTextarea";
  43. import elementPromoCode from "@/components/newComponent/form/ElementPromoCode";
  44. import elementTimePicker from "@/components/newComponent/form/ElementTimePicker";
  45. import moment from "moment";
  46. export default {
  47. components: {
  48. elementTextarea,
  49. elementPromoCode,
  50. elementTimePicker,
  51. moment
  52. },
  53. props: {
  54. totalPrice: {
  55. type: Number
  56. },
  57. info: {
  58. type: Object,
  59. },
  60. orderStatus: {
  61. type: Object
  62. }
  63. },
  64. data() {
  65. return {};
  66. },
  67. computed: {
  68. // bookDate() {
  69. // return this.orderStatus.created_at;
  70. // // return moment(this.orderStatus.created_at).format("YYYY.MM.DD H:mm");
  71. // },
  72. total() {
  73. return parseFloat(this.totalPrice).toLocaleString();
  74. },
  75. },
  76. methods: {},
  77. };
  78. </script>
  79. <style lang="scss" scoped>
  80. .bounce-enter-active {
  81. animation: bounce-in 0.3s ease-out;
  82. }
  83. .bounce-leave-active {
  84. animation: bounce-in 0.3s cubic-bezier(1, 0.5, 0.8, 1) reverse;
  85. }
  86. @keyframes bounce-in {
  87. 0% {
  88. opacity: 0;
  89. transform: translateY(-10px);
  90. }
  91. 50% {
  92. opacity: 0.5;
  93. transform: translateY(-5px);
  94. }
  95. 100% {
  96. opacity: 1;
  97. transform: translateY(0);
  98. }
  99. }
  100. </style>