123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408 |
- <template>
- <q-page>
- <div class="q-pa-md">
- <q-carousel
- animated
- v-model="slide"
- navigation
- infinite
- height="540px"
- :autoplay="2000"
- arrows
- transition-prev="slide-right"
- transition-next="slide-left"
- @mouseenter="autoplay = false"
- @mouseleave="autoplay = true"
- >
- <q-carousel-slide
- v-for="(item, index) in sliders"
- :key="index"
- :name="index"
- :img-src="item.imageUrl"
- class="cursor-pointer"
- @click="gotoUrl(item.linkToBlog)"
- >
- <div class="q-mt-xl q-ml-xl absolute-left custom-caption">
- <div style="height: 100px"></div>
- <div class="text-h1 text-weight-bolder">{{ item.title }}</div>
- <div class="text-h5 text-weight-medium">{{ item.subTitle }}</div>
- </div>
- </q-carousel-slide>
- </q-carousel>
- </div>
- <div class="q-pa-md" style="height: 40px"></div>
- <div class="row">
- <div class="col-6 col-md-2 text-blue-6 text-h4 q-pl-md">
- {{ $t("destinations") }}
- </div>
- <div class="col-md-8"></div>
- <div
- @click="goPage('/destination')"
- class="col-6 col-md-2 text-blue-6 cursor-pointer"
- >
- {{ $t("more_destinations") }} >
- </div>
- </div>
- <div class="row">
- <div class="text-h3 q-pl-md q-mt-md">
- {{ $t("places_in_china") + "!" }}
- </div>
- </div>
- <div class="row justify-center">
- <div
- class="col-12 col-sm-4 col-md-2"
- v-for="item in randDestinations"
- :key="item.blogId"
- >
- <div class="q-pa-md">
- <q-card
- @click="goPage('/destination-detail/' + item.destinationId)"
- class="rand-destination-card cursor-pointer rounded-borders"
- @mouseenter="hoverFlag = true"
- @mouseleave="hoverFlag = false"
- >
- <q-img
- class="rounded-borders"
- style="height: 100%"
- :src="normalizeMultiImageUrl(item.destinationProfileImage)"
- >
- <div class="absolute-bottom" v-if="hoverFlag">
- <div class="text-h6">{{ item.destinationName }}</div>
- <div class="text-subtitle2">
- {{ item.parentDestinationName }}
- </div>
- </div>
- </q-img>
- </q-card>
- </div>
- </div>
- </div>
- <div class="q-pa-md">
- <div class="row">
- <div
- v-if="$q.screen.gt.xs"
- @click="goPage('/contact')"
- class="cursor-pointer col-12 q-mt-md q-pt-md rounded-borders text-white text-weight-bold text-h5 text-no-wrap text-center"
- style="
- background-color: #2a82e4;
- height: 80px;
- border-radius: 20px;
- border: 1px solid black;
- "
- >
- {{ $t("tailor_made_trip") }}
- </div>
- <div
- v-if="!$q.screen.gt.xs"
- @click="goPage('/contact')"
- class="cursor-pointer col-12 q-mt-md q-pt-md rounded-borders text-white text-weight-bold text-subtitle1 text-no-wrap text-center"
- style="
- background-color: #2a82e4;
- height: 80px;
- border-radius: 20px;
- border: 1px solid black;
- "
- >
- Want a Tailor Made Trip to China? Click Here for Help
- </div>
- </div>
- </div>
- <div class="q-pa-md">
- <div class="row">
- <div
- class="col-12 cursor-pointer"
- style="height: 160px"
- @click="goPage('/contact')"
- >
- <q-img :src="homePostImageUrl" fit="fill" style="height: 100%">
- </q-img>
- </div>
- </div>
- </div>
- <div class="row">
- <div class="text-h5 text-weight-bold text-blue-6 q-pl-md q-mt-md">
- {{ $t("people_are_traveling") + "!" }}
- </div>
- </div>
- <div class="row">
- <div class="text-h3 text-weight-medium q-pl-md q-mt-md">
- {{ $t("whats_in_china") + "!" }}
- </div>
- </div>
- <div class="row justify-left">
- <div
- class="col-12 col-sm-4 col-md-2"
- v-for="(item, index) in globalUnifiedItemList"
- v-bind:key="index"
- >
- <div class="q-pa-md">
- <q-card
- v-if="item.type === 'blog'"
- class="cursor-pointer"
- flat
- bordered
- style="height: 530px"
- >
- <q-img
- @click="goPage('/blog-detail/' + item.value.blogId)"
- :src="item.value.headImageUrl"
- placeholder-src="https://photoprism.hichinatravel.com/api/v1/t/2bfc32550ae040956f7e861566d26c487c0143e7/32mcf2k4/tile_224"
- style="height: 300px"
- />
- <q-card-section style="max-height: 200px; overflow: hidden">
- <div class="text-overline text-orange-9">
- {{ item.value.createdTime }}
- </div>
- <div class="text-h5 q-mt-sm q-mb-xs">
- <a :href="'./blog-detail/' + item.value.blogId">{{
- item.value.title
- }}</a>
- </div>
- <div class="text-caption text-grey">
- <div v-if="!showFullContent">
- {{ item.value.content.slice(0, 200) }}
- <!-- Display the first 200 characters -->
- >
- </div>
- <div v-else>
- {{ item.value.content }}
- </div>
- </div>
- </q-card-section>
- </q-card>
- <q-card
- v-if="item.type === 'product'"
- class="cursor-pointer"
- flat
- bordered
- style="height: 400px"
- >
- <q-img
- @click="goPage('/product-detail/' + item.value.skuGroupId)"
- :src="item.value.imageUrl"
- placeholder-src="https://photoprism.hichinatravel.com/api/v1/t/2bfc32550ae040956f7e861566d26c487c0143e7/32mcf2k4/tile_224"
- style="height: 220px"
- />
- <q-card-section>
- <div class="text-subtitle1 text-pink">
- Start from ¥{{ item.value.minPrice }}
- </div>
- <div class="text-h5 q-mt-sm q-mb-xs">
- {{ item.value.skuGroupName }}
- </div>
- </q-card-section>
- </q-card>
- </div>
- </div>
- </div>
- <div class="row">
- <div class="col-12">
- <p class="text-center" style="background-color: #b4b4b4">
- Scroll to load more
- </p>
- </div>
- </div>
- </q-page>
- </template>
- <script>
- import { ref, onMounted } from "vue";
- import { defineComponent } from "vue";
- import { debounce } from "lodash";
- import { api } from "boot/axios";
- export default defineComponent({
- name: "IndexPage",
- setup() {
- const sliders = ref([]);
- const randDestinations = ref([]);
- const hoverFlag = ref(false);
- const homePostLink = ref("");
- const homePostImageUrl = ref("");
- const currentPage = ref(1);
- const totalBlogCount = ref(-1);
- const blogPageSize = ref(30);
- const productPageSizePage = ref(5);
- const loading = ref(false);
- const bloglist = ref([]);
- const productlist = ref([]);
- const globalUnifiedItemList = ref([]);
- const unifiedItemList = ref([]);
- // function goToBlog(url) {
- // window.location.href = url;
- // }
- // function normalizeMultiImageUrl(input) {
- // if (input.indexOf(",") > -1) {
- // return input.split(",").shift();
- // } else if (input.indexOf(";") > -1) {
- // return input.split(";").shift();
- // }
- // return input;
- // }
- function loadRand6Destinations() {
- api
- .get("/api/public/destination/rand6")
- .then((response) => {
- randDestinations.value = response.data.data;
- })
- .catch((e) => {
- alert(e);
- });
- }
- function loadHomeSliders() {
- api
- .get("/api/public/pagecontent/homesliders")
- .then((response) => {
- sliders.value = response.data.data;
- loadBlogList();
- })
- .catch((e) => {
- console.log(e);
- });
- }
- function loadHomePost() {
- api
- .get("/api/public/pagecontent/homepost")
- .then((response) => {
- homePostLink.value = response.data.data.postLink;
- homePostImageUrl.value = response.data.data.postImageUrl;
- })
- .catch((e) => {
- console.log(e);
- });
- }
- function loadProducts() {
- var params = {};
- params.pageSize = productPageSizePage.value;
- params.query = "";
- params.page = currentPage.value;
- params.productTypeId = "";
- api
- .get("/api/public/productsku/productskugrouplist", { params: params })
- .then(function (response) {
- productlist.value = response.data.data.data;
- for (var index in productlist.value) {
- var obj = {};
- obj.type = "product";
- obj.value = productlist.value[index];
- unifiedItemList.value.push(obj);
- }
- globalUnifiedItemList.value = globalUnifiedItemList.value.concat(
- unifiedItemList.value
- );
- loading.value = false;
- })
- .catch(function (error) {
- console.log(error);
- });
- }
- function loadBlogList() {
- loading.value = true;
- unifiedItemList.value = [];
- var params = {};
- params.pageSize = blogPageSize.value;
- params.query = "";
- console.log("loading page: " + currentPage.value);
- params.page = currentPage.value;
- api
- .get("/api/public/blog/list", { params: params })
- .then(function (response) {
- if (totalBlogCount.value == -1) {
- totalBlogCount.value = response.data.data.total;
- }
- bloglist.value = response.data.data.data;
- for (var index in bloglist.value) {
- var obj = {};
- // obj.type=parseInt(Math.random() * 2)==0?'blog':'scaleblog';
- obj.type = "blog";
- obj.value = bloglist.value[index];
- unifiedItemList.value.push(obj);
- }
- loadProducts();
- })
- .catch(function (error) {
- console.log(error);
- });
- }
- function loadMore() {
- currentPage.value += 1;
- var maxPage = totalBlogCount.value / blogPageSize.value;
- if (currentPage.value <= maxPage + 1) {
- loadBlogList();
- }
- }
- function getNextBatch() {
- window.onscroll = debounce(function () {
- let bottomOfWindow =
- document.documentElement.scrollTop + window.innerHeight + 100 >
- document.documentElement.scrollHeight;
- if (bottomOfWindow) {
- loadMore();
- }
- }, 500);
- }
- function logPv() {
- api
- .post("/api/public/pagestats/pv/home")
- .then((res) => {
- console.log("log pv:");
- console.log(res.data);
- })
- .catch((err) => {
- console.error("Error:", err);
- });
- }
- onMounted(() => {
- logPv();
- // we call "next()" method of our component
- loadHomeSliders();
- loadRand6Destinations();
- loadHomePost();
- getNextBatch();
- });
- return {
- slide: ref(0),
- autoplay: ref(true),
- sliders,
- randDestinations,
- hoverFlag,
- homePostLink,
- homePostImageUrl,
- globalUnifiedItemList,
- };
- },
- });
- </script>
- <style lang="sass" scoped>
- .custom-caption
- text-align: left
- padding: 12px
- color: white
- .rand-destination-card
- width: 100%
- max-width: 550px
- height: 300px
- </style>
|