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.

280 lines
7.7 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
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
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>
  3. <Swiper class="swiper tw-mb-[15px] md:tw-mb-[30px]" :options="swiperOption" @click="slideClicked">
  4. <SwiperSlide v-for="(item, index) in bookingType" :key="index"
  5. :class="['tw-transition-all tw-delay-75 tw-ease-in-out', currentType === item
  6. ? 'tw-flex tw-justify-center tw-py-[13px] tw-border-b-2 tw-border-solid tw-border-0 tw-border-primary-1 tw-text-primary-1 tw-cursor-pointer'
  7. : 'tw-flex tw-justify-center tw-py-[13px] tw-border-b tw-border-base-disable hover:tw-border-b-2 tw-border-solid tw-border-0 tw-border-transparent hover:tw-text-primary-1 tw-cursor-pointer']">
  8. {{ item }}
  9. </SwiperSlide>
  10. </Swiper>
  11. <h4 class="t14 tw-font-bold md:t16 tw-mb-[10px]">{{ $t("Filter") }}</h4>
  12. <div class="element tw-w-fit md:tw-w-fit tw-mb-[15px] md:tw-mb-[30px]">
  13. <ElementSelect :select="{
  14. required: false,
  15. }" :selectList="categoryList" :default="0" @change="categorySelected" :defaultOptionMsg="$t('All Categories')">
  16. </ElementSelect>
  17. </div>
  18. <UserServiceItem v-for="(item, index) in bookingList" :key="index" :info="item" @contact-us="activeContactUs"
  19. @upload-remittance-slip="activeUploadSlip"></UserServiceItem>
  20. <!-- <div v-if="bookingList.length < 1" class="tw-mt-[5px] tw-mb-[60px]">
  21. <div class="tw-flex tw-justify-center tw-mt-[60px] tw-mb-[30px]">
  22. <img :src="emptyImg" alt="" class="tw-h-[142px] tw-w-[160px]" />
  23. </div>
  24. <div class="tw-text-center tw-body-3 tw-text-neutrals-800 tw-mb-[30px]">
  25. {{
  26. currentType === "全部"
  27. ? $t(`No Bookings yet ...`)
  28. : $t(`You don't have any ${currentType} bookings`)
  29. }}
  30. </div>
  31. <div class="tw-flex tw-justify-center tw-mb-[30px]">
  32. <button
  33. class="tw-transition tw-justify-center tw-items-center tw-btn-md tw-text-white tw-bg-primary-1 tw-px-[30px] tw-py-[8.5px] tw-rounded-xl tw-w-fit tw-h-fit">
  34. {{ $t("Explore with ShowEasy") }}
  35. </button>
  36. </div>
  37. </div> -->
  38. <!-- <div v-if="bookingList.length < 1"
  39. class="tw-mb-[60px] tw-py-[60px] tw-pl-[10px] md:tw-body-2">
  40. {{ $t("Sorry, we couldn't find anything for ") + searchQuery }}
  41. {{ $t("Sorry, we couldn't find anything for ") }}
  42. </div> -->
  43. <div class="tw-flex tw-justify-end">
  44. <pagination :pageLength="pageLength" @update="updatePage"></pagination>
  45. </div>
  46. <ContactUsModal :ContactUs="contactUs"></ContactUsModal>
  47. <UploadRemittanceSlipModal :uploadBookingID="uploadBookingID"></UploadRemittanceSlipModal>
  48. </div>
  49. </template>
  50. <script>
  51. import ElementSelect from "@/components/user/userSelect.vue";
  52. import UserServiceItem from "./userServiceItem.vue";
  53. import pagination from "@/components/newComponent/pagination/pagination.vue";
  54. import ContactUsModal from "@/components/booking/Modal/ContactUsModal.vue";
  55. import UploadRemittanceSlipModal from "@/components/booking/Modal/UploadRemittanceSlipModal.vue";
  56. import { Swiper, SwiperSlide } from "vue-awesome-swiper";
  57. export default {
  58. components: {
  59. ElementSelect,
  60. UserServiceItem,
  61. Swiper,
  62. SwiperSlide,
  63. pagination,
  64. ContactUsModal,
  65. UploadRemittanceSlipModal,
  66. },
  67. props: {
  68. searchQuery: {
  69. type: String,
  70. },
  71. width: {
  72. type: Number
  73. },
  74. userData: {
  75. type: Object
  76. }
  77. },
  78. data() {
  79. return {
  80. bookingType: [
  81. this.$t("booking.All"),
  82. this.$t("booking.Awaiting Confirmation"),
  83. this.$t("booking.Processing"),
  84. this.$t("booking.Completed"),
  85. this.$t("booking.Cancelled"),
  86. ],
  87. currentType: "All",
  88. emptyImg: require("~/assets/img/companyEmpty.png"),
  89. contactUs: {
  90. Phone: "info@showeasy.com",
  91. Mail: "+886-2-2725-5000",
  92. },
  93. swiperOption: {
  94. slidesPerView: 3,
  95. breakpoints: {
  96. 768: {
  97. slidesPerView: 5,
  98. },
  99. },
  100. },
  101. currentPage: 1,
  102. itemsPerPage: 6,
  103. total: 0,
  104. categoryValue: "",
  105. bookingList: [],
  106. bookingStatus: [],
  107. subCategoryIDs: [],
  108. uploadBookingID: "",
  109. categoryList: [],
  110. };
  111. },
  112. mounted() {
  113. this.fetchCategory();
  114. },
  115. watch: {
  116. },
  117. async created() {
  118. await this.fetchNewBookingList();
  119. },
  120. computed: {
  121. result() {
  122. return this.total;
  123. },
  124. pageLength() {
  125. return Math.ceil(this.result / this.itemsPerPage);
  126. },
  127. },
  128. methods: {
  129. categorySelected(value) {
  130. this.subCategoryIDs = [];
  131. if (this.categoryValue != 0) {
  132. this.subCategoryIDs.push(value);
  133. }
  134. this.fetchNewBookingList();
  135. },
  136. slideClicked(swiper) {
  137. this.currentType = this.bookingType[swiper.clickedIndex];
  138. if (this.currentType == "0") {
  139. this.bookingStatus = [];
  140. } else if (this.currentType == "訂單確認中") {
  141. this.bookingStatus = ["01"];
  142. console.log("Unpaid");
  143. } else if (this.currentType == "訂單處理中") {
  144. this.bookingStatus = ["02"];
  145. } else if (this.currentType == "訂單完成") {
  146. this.bookingStatus = ["03"];
  147. } else if (this.currentType == "訂單取消") {
  148. this.bookingStatus = ["04"];
  149. } else {
  150. this.bookingStatus = [];
  151. }
  152. this.fetchNewBookingList();
  153. },
  154. activeContactUs() {
  155. this.$modal.show("ContactUs");
  156. },
  157. activeUploadSlip(bookingid) {
  158. this.uploadBookingID = bookingid;
  159. this.$modal.show("UploadRemittanceSlip");
  160. },
  161. fetchCategory() {
  162. this.$axios
  163. .get(`/trending/api/BookingOnline/BookingCategoryList?Lang=${this.$i18n.localeProperties["langQuery"]}`)
  164. .then((response) => {
  165. //console.log(JSON.stringify(response));
  166. if (response && response.data && response.data.DATA && response.data.DATA.rel) {
  167. let data = response.data.DATA.rel
  168. if (data) {
  169. this.categoryList = data;
  170. this.categoryList = this.categoryList.map((item) => {
  171. return {
  172. id: item.CategoryID,
  173. name: item.CategoryName,
  174. };
  175. });
  176. }
  177. }
  178. })
  179. .catch((error) => {
  180. console.log(error);
  181. });
  182. },
  183. async getBookingList() {
  184. console.log("getBookingList");
  185. await this.$axios
  186. .get(`/trending/api/BookingOnline/BookingCardList?` +
  187. `&PageIndex=${this.currentPage}` +
  188. `&PageSize=${this.itemsPerPage}` +
  189. `&SubCategoryIDs=${JSON.stringify(this.subCategoryIDs)}` +
  190. `&BookingStatuses=${JSON.stringify(this.bookingStatus)}` +
  191. `&PaymentStatuses` +
  192. `&Lang=${this.$i18n.localeProperties["langQuery"]}`)
  193. .then((response) => {
  194. if (response && response.data && response.data.DATA && response.data.DATA.rel) {
  195. let data = response.data.DATA.rel;
  196. if (data.DataList) {
  197. // console.table(data.DataList);
  198. console.log(data.DataList);
  199. this.total = data.Total;
  200. this.bookingList = data.DataList;
  201. }
  202. }
  203. })
  204. .catch((error) => {
  205. console.log(error);
  206. });
  207. },
  208. async fetchNewBookingList() {
  209. this.currentPage = 1;
  210. await this.getBookingList();
  211. },
  212. updatePage(value) {
  213. this.currentPage = value;
  214. window.scrollTo(0, 0);
  215. this.getBookingList();
  216. },
  217. },
  218. };
  219. </script>
  220. <style lang="scss" scoped>
  221. ::-webkit-scrollbar {
  222. display: none;
  223. }
  224. :deep() {
  225. // .v-pagination__navigation{
  226. // background-color: #e5e5e5;
  227. // }
  228. .v-pagination>li>.v-pagination__item {
  229. background-color: inherit;
  230. }
  231. .v-pagination__navigation {
  232. background-color: inherit !important;
  233. }
  234. .v-pagination__navigation--disabled {
  235. opacity: 0;
  236. }
  237. }
  238. </style>