|
|
@ -289,14 +289,10 @@ export default { |
|
|
|
this.$axios |
|
|
|
.get(`/trending/api/BookingOnline/BookingCardList?SubCategoryIDs=${JSON.stringify(this.subCategoryIDs)}&BookingStatuses=${JSON.stringify(this.bookingStatus)}&PaymentStatuses&Lang=${this.$i18n.localeProperties["langQuery"]}`) |
|
|
|
.then((response) => { |
|
|
|
console.log(JSON.stringify(response)); |
|
|
|
if(response && response.data && response.data.DATA && response.data.DATA.rel){ |
|
|
|
let data = response.data.DATA.rel |
|
|
|
if(data){ |
|
|
|
this.bookingList = data; |
|
|
|
// const bookingitem = this.bookingList; |
|
|
|
console.log(this.bookingList[0].BookingItem); |
|
|
|
|
|
|
|
this.bookingList = data; |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|