|
@@ -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'
|