Sfoglia il codice sorgente

change: 完全动态设置网站favicon.

peter 4 settimane fa
parent
commit
e0cda74955
3 ha cambiato i file con 13 aggiunte e 3 eliminazioni
  1. 12 2
      components/PcHeader.vue
  2. 1 1
      nuxt.config.js
  3. BIN
      static/favicon.ico

+ 12 - 2
components/PcHeader.vue

@@ -621,6 +621,7 @@ export default {
       index: null,
       websitelogo: '',
       bgColor: '#fff',
+      favicon: '',
     }
   },
   async fetch() {
@@ -709,6 +710,9 @@ export default {
       if (!to.query.keyword) {
         this.keyword = ''
       }
+      if (this.favicon?.length) {
+        this.setFavicon(this.favicon)
+      }
     },
   },
   beforeMount() {
@@ -719,12 +723,14 @@ export default {
           (/^\/.+/.test(res.logo) ? res.logo : `/${res.logo}`)
         : res.logo
       this.bgColor = res.theme_color || '#fff'
+      // res.logo_icon = 'uploads/catalog/image/20241031/7b2eeca1add8e56a5b831f7ad4ea354af92e9db4.png'
       if (res.logo_icon?.length) {
-        const link = document.getElementById('favicon')
-        link.href = !this.$mediaRegExp.test(res.logo_icon)
+        this.favicon = !this.$mediaRegExp.test(res.logo_icon)
           ? this.$OSS_PREFIX +
             (/^\/.+/.test(res.logo_icon) ? res.logo_icon : `/${res.logo_icon}`)
           : res.logo_icon
+        console.log(this.favicon, 'favicon')
+        this.setFavicon(this.favicon)
       }
     })
   },
@@ -763,6 +769,10 @@ export default {
       }
       this.timer = setTimeout(fn, wait)
     },
+    setFavicon (str) {
+      const link = document.getElementById('favicon')
+      link.href = str
+    },
     search() {
       this.result = { cate: [], subCate: [], firstCate: [] }
       this.showType = 'flex'

+ 1 - 1
nuxt.config.js

@@ -32,7 +32,7 @@ export default {
       { hid: 'keywords', name: 'keywords', content: 'PromoCollection' },
       { name: 'format-detection', content: 'telephone=no' },
     ],
-    link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico', id: "favicon" }],
+    link: [{ rel: 'icon', type: 'image/x-icon', href: '', id: "favicon" }],
     script: [
       { src: '//yun.baoxiaohe.com/openflatform/sdk/v2.2/staticwwnf5q1r.js' },
     ],

BIN
static/favicon.ico