default.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <div class="com-body">
  3. <pc-header style="opacity: 0; position: static !important"></pc-header>
  4. <pc-header></pc-header>
  5. <nuxt />
  6. <pc-footer></pc-footer>
  7. <loginDialog></loginDialog>
  8. </div>
  9. </template>
  10. <script>
  11. import { removeKeyboardKey, addKeyboardKey } from '@/utils/keyboard'
  12. export default {
  13. data() {
  14. return {
  15. websitelogo: '',
  16. }
  17. },
  18. mounted() {
  19. // this.openZoho()
  20. // 添加监听
  21. window.addEventListener('keydown', addKeyboardKey)
  22. window.addEventListener('keyup', removeKeyboardKey)
  23. // 记住添加事件和卸载事件老是成对存在
  24. this.$once('hook:beforeDestroy', () => {
  25. window.removeEventListener('keydown', addKeyboardKey)
  26. window.removeEventListener('keyup', removeKeyboardKey)
  27. })
  28. },
  29. methods: {
  30. openZoho() {
  31. window.$zoho = window.$zoho || {}
  32. // eslint-disable-next-line
  33. $zoho.salesiq = $zoho.salesiq || {
  34. widgetcode:
  35. 'c5155e8cbfdb63f0a2b6f6f2cd50bdf2d3a9287755a068674324ed7d483e092e1baa6b2e7ee5c67d53c187e030d5c1f5',
  36. values: {},
  37. ready: function () {},
  38. }
  39. const d = document
  40. const s = d.createElement('script')
  41. s.type = 'text/javascript'
  42. s.id = 'zsiqscript'
  43. s.defer = true
  44. s.src = 'https://salesiq.zoho.com/widget'
  45. const t = d.getElementsByTagName('script')[0]
  46. t.parentNode.insertBefore(s, t)
  47. d.write("<div id='zsiqwidget'></div>")
  48. },
  49. },
  50. }
  51. </script>
  52. <style lang="scss" scoped></style>