ContactPage.vue 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <q-page
  3. ><div style="margion: 0 auto; min-height: 50px">
  4. <div class="text-center text-h5">
  5. You need help from our customer serivce?
  6. </div>
  7. <div class="text-center text-h6 text-subtitle text-grey-13">
  8. Please send your demands to
  9. </div>
  10. <div class="text-center">
  11. <a href="mailto:customerservice@hichinatrip.com"
  12. >customerservice@hichinatrip.com</a
  13. >
  14. </div>
  15. <div class="text-center text-subtitle1">
  16. Our co-workers will will response ASAP
  17. </div>
  18. <div class="text-center text-h5 text-grey-13">
  19. Also, add us on Wechat/WhatsAPP!
  20. </div>
  21. <div class="text-center">
  22. <q-img
  23. style="width: 300px"
  24. src="https://photoprism.hichinatravel.com/api/v1/t/d68ee79239386b14869f548a423de4bcc7e3cb31/32mcf2k4/fit_2048"
  25. alt=""
  26. />
  27. </div>
  28. </div>
  29. <!-- Messenger Chat Plugin Code -->
  30. <div id="fb-root"></div>
  31. <!-- Your Chat Plugin code -->
  32. <div id="fb-customer-chat" class="fb-customerchat"></div>
  33. </q-page>
  34. </template>
  35. <script>
  36. import { ref, onMounted, onBeforeMount, getCurrentInstance } from "vue";
  37. import { useQuasar } from "quasar";
  38. import { api } from "boot/axios";
  39. import Qs from "qs";
  40. export default {
  41. name: "ContactPage",
  42. setup() {
  43. function setupChat() {
  44. var chatbox = document.getElementById("fb-customer-chat");
  45. chatbox.setAttribute("page_id", "1534271790187013");
  46. chatbox.setAttribute("attribution", "biz_inbox");
  47. }
  48. function initFacebookSDK() {
  49. window.fbAsyncInit = function () {
  50. FB.init({
  51. xfbml: true,
  52. version: "v17.0",
  53. });
  54. };
  55. (function (d, s, id) {
  56. var js,
  57. fjs = d.getElementsByTagName(s)[0];
  58. if (d.getElementById(id)) return;
  59. js = d.createElement(s);
  60. js.id = id;
  61. js.src = "https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js";
  62. fjs.parentNode.insertBefore(js, fjs);
  63. })(document, "script", "facebook-jssdk");
  64. }
  65. onMounted(() => {
  66. setupChat();
  67. });
  68. onBeforeMount(() => {
  69. initFacebookSDK();
  70. });
  71. },
  72. };
  73. </script>