فهرست منبع

feat: 网站tab文案大写. tab icon自定义.

peter 1 ماه پیش
والد
کامیت
847ce6707c
2فایلهای تغییر یافته به همراه9 افزوده شده و 2 حذف شده
  1. 8 1
      components/PcHeader.vue
  2. 1 1
      nuxt.config.js

+ 8 - 1
components/PcHeader.vue

@@ -713,12 +713,19 @@ export default {
   },
   beforeMount() {
     this.$store.dispatch('getShopInfo').then(res => {
-      document.title = res.title
+      document.title = (res.title || '').toUpperCase()
       this.websitelogo = !this.$mediaRegExp.test(res.logo)
         ? this.$OSS_PREFIX +
           (/^\/.+/.test(res.logo) ? res.logo : `/${res.logo}`)
         : res.logo
       this.bgColor = res.theme_color || '#fff'
+      if (res.logo_icon?.length) {
+        const link = document.getElementById('favicon')
+        link.href = !this.$mediaRegExp.test(res.logo_icon)
+          ? this.$OSS_PREFIX +
+            (/^\/.+/.test(res.logo_icon) ? res.logo_icon : `/${res.logo_icon}`)
+          : res.logo_icon
+      }
     })
   },
   created() {

+ 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' }],
+    link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico', id: "favicon" }],
     script: [
       { src: '//yun.baoxiaohe.com/openflatform/sdk/v2.2/staticwwnf5q1r.js' },
     ],