123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- <template>
- <q-page>
- <div class="row" style="height: 110px; background-color: #e5f2fa">
- <div class="col-12 col-sm-10 column" style="margin-left: 20px">
- <div class="q-pt-md q-pl-md text-black text-weight-bold">
- Home > Destination > {{ destinationName }}
- </div>
- <div class="col text-weight-bold q-pl-md text-h3">
- {{ destinationName }}
- </div>
- </div>
- </div>
- <div class="row">
- <!-- Left Column for Image -->
- <div
- class="col-12 col-sm-5 row q-px-md q-py-lg d-flex justify-center align-center"
- style="height: 450px; background-color: white"
- >
- <q-img
- :src="destinationProfileImage"
- style="width: 100%; max-width: 650px; height: 100%"
- fit="cover"
- >
- </q-img>
- </div>
- <!-- Right Column for Description, Guidebook, and Download Button -->
- <div class="col-12 col-sm-7 row q-px-md q-py-lg" style="height: 450px">
- <div
- class="column col-12 d-flex flex-column justify-between"
- style="background-color: #eff6fd; height: 100%"
- >
- <div class="q-pa-md text-subtitle1">
- <div v-html="description"></div>
- </div>
- <div class="q-pa-md text-h4" style="margin-top: auto">
- Guidebook of {{ destinationName }}
- <q-btn class="primary" color="primary" @click="goDownload">
- <q-icon left size="3em" name="download" />
- <div>Download</div>
- </q-btn>
- </div>
- </div>
- </div>
- </div>
- <div
- class="row flex flex-left text-h4 text-weight-bold"
- style="
- background-color: #eff6fd;
- border-top: 1px solid gray;
- height: 55px;
- margin-left: 30px;
- "
- >
- Places to go in {{ destinationName }}
- </div>
- <div
- v-for="item in childDestinations"
- v-bind:key="item.destinationId"
- class="row q-pa-md"
- style="width: 90%; min-height: 200px; margin: 0 auto"
- >
- <div class="col-3 q-pa-md" style="border-right: 1px solid gray">
- <q-img
- class="cursor-pointer"
- @click="goPage('/destination-detail/' + item.destinationId)"
- fit="fill"
- :src="normalizeMultiImageUrl(item.destinationProfileImage)"
- ></q-img>
- </div>
- <div class="col-9 column q-pa-md">
- <div class="text-h4 text-weight-bold" style="background-color: #f3f6f8">
- <a :href="'./destination-detail/' + item.destinationId">{{
- item.destinationName
- }}</a>
- </div>
- <div class="q-pt-md">
- {{ removeHtmlTag(item.description) }}
- </div>
- </div>
- </div>
- </q-page>
- </template>
- <script>
- import { ref, onMounted, getCurrentInstance } from "vue";
- import { api } from "boot/axios";
- import { useRoute } from "vue-router";
- import { useSeoMeta } from "unhead";
- import { useQuasar } from "quasar";
- export default {
- name: "DestinationDetailPage",
- setup() {
- const instance = getCurrentInstance();
- const app = getCurrentInstance().appContext.app;
- const gp = app.config.globalProperties;
- const $q = useQuasar();
- const route = useRoute();
- const description = ref("");
- const destinationProfileImage = ref("");
- const downloadUrl = ref("");
- const destinationName = ref("");
- const childDestinations = ref([]);
- const relevantToursProduct = ref([]);
- function goDownload() {
- if (downloadUrl.value == null || downloadUrl.value == "") {
- gp.$generalNotify(
- $q,
- false,
- "There is no guidebook for this destination"
- );
- return;
- } else {
- window.location.href = downloadUrl.value;
- }
- }
- function logPv() {
- api
- .post(
- "/api/public/pagestats/pv/destination-detail-" +
- route.params.destinationId
- )
- .then((res) => {
- console.log("log pv:");
- console.log(res.data);
- })
- .catch((err) => {
- console.error("Error:", err);
- });
- }
- function logView() {
- api
- .post(
- "/api/public/pagestats/view-destination/" + route.params.destinationId
- )
- .then((res) => {
- console.log("view cnt of this destination:");
- console.log(res.data);
- })
- .catch((err) => {
- console.error("Error:", err);
- });
- }
- function loadRelatedTours() {
- api
- .get(
- "/api/public/destination/relavanttourproduct/" +
- route.params.destinationId
- )
- .then((response) => {
- if (response.data.ok === true) {
- relevantToursProduct.value = response.data.data;
- } else {
- relevantToursProduct.value = [];
- }
- })
- .catch((e) => {
- console.log("get relevant tours product err");
- console.log(e);
- });
- }
- function loadChildrenDestination() {
- api
- .get("/api/public/destination/children/" + route.params.destinationId)
- .then((response) => {
- childDestinations.value = response.data.data;
- })
- .catch((e) => {
- console.log("get destination detail err");
- console.log(e);
- });
- }
- function loadDestinations() {
- api
- .get("/api/public/destination/" + route.params.destinationId)
- .then((response) => {
- description.value = response.data.data.description;
- destinationProfileImage.value = gp.$normalizeMultiImageUrl(
- response.data.data.destinationProfileImage
- );
- console.log(destinationProfileImage.value);
- downloadUrl.value = response.data.data.downloadUrl;
- destinationName.value = response.data.data.destinationName;
- useSeoMeta({
- title: destinationName.value,
- description: description.value,
- ogDescription: description.value,
- ogTitle: destinationName.value,
- ogImage:
- "https://www.hichinatravel.com/static/png/name-67280b81.png",
- twitterCard: "summary_large_image",
- });
- })
- .catch((e) => {
- console.log("get destination detail err");
- console.log(e);
- });
- }
- onMounted(() => {
- logPv();
- logView();
- console.log("on mounted destination detail page");
- loadDestinations();
- loadChildrenDestination();
- loadRelatedTours();
- });
- return {
- destinationName,
- destinationProfileImage,
- description,
- childDestinations,
- goDownload,
- };
- },
- };
- </script>
|