default.vue 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <template>
  2. <div class="com-body">
  3. <div style="">
  4. <img
  5. v-show="websitelogo.length"
  6. style="margin-bottom: 56px; max-width: 100%; max-height: 100%"
  7. :src="`${websitelogo}`"
  8. alt="Logo-2" />
  9. </div>
  10. <pc-header></pc-header>
  11. <nuxt />
  12. <pc-footer></pc-footer>
  13. <loginDialog></loginDialog>
  14. </div>
  15. </template>
  16. <script>
  17. import { removeKeyboardKey, addKeyboardKey } from '@/utils/keyboard'
  18. export default {
  19. data() {
  20. return {
  21. websitelogo: '',
  22. }
  23. },
  24. async fetch() {
  25. await this.$store.dispatch('getShopInfo', 'layout').then(res => {
  26. this.websitelogo = !this.$mediaRegExp.test(res.logo)
  27. ? this.$OSS_PREFIX +
  28. (/^\/.+/.test(res.logo) ? res.logo : `/${res.logo}`)
  29. : res.logo
  30. })
  31. },
  32. mounted() {
  33. // this.openZoho()
  34. // 添加监听
  35. window.addEventListener('keydown', addKeyboardKey)
  36. window.addEventListener('keyup', removeKeyboardKey)
  37. // 记住添加事件和卸载事件老是成对存在
  38. this.$once('hook:beforeDestroy', () => {
  39. window.removeEventListener('keydown', addKeyboardKey)
  40. window.removeEventListener('keyup', removeKeyboardKey)
  41. })
  42. },
  43. methods: {
  44. openZoho() {
  45. window.$zoho = window.$zoho || {}
  46. // eslint-disable-next-line
  47. $zoho.salesiq = $zoho.salesiq || {
  48. widgetcode:
  49. 'c5155e8cbfdb63f0a2b6f6f2cd50bdf2d3a9287755a068674324ed7d483e092e1baa6b2e7ee5c67d53c187e030d5c1f5',
  50. values: {},
  51. ready: function () {},
  52. }
  53. const d = document
  54. const s = d.createElement('script')
  55. s.type = 'text/javascript'
  56. s.id = 'zsiqscript'
  57. s.defer = true
  58. s.src = 'https://salesiq.zoho.com/widget'
  59. const t = d.getElementsByTagName('script')[0]
  60. t.parentNode.insertBefore(s, t)
  61. d.write("<div id='zsiqwidget'></div>")
  62. },
  63. },
  64. }
  65. </script>
  66. <style lang="scss" scoped></style>