隐私协议菜单,店铺详情店铺详情非空判断,自定义logo

This commit is contained in:
mhhhh
2022-05-17 09:19:36 +08:00
parent 727d240715
commit 3cd57a6915
15 changed files with 531 additions and 139 deletions

View File

@@ -6,9 +6,31 @@
<script>
import storage from '@/plugins/storage';
import { getLogoImg} from '@/api/common.js';
export default {
name: 'App',
mounted(){
//获取LOGO图片
getLogoImg().then(res => {
if(res.success&&res.result.settingValue){
let data = JSON.parse(res.result.settingValue);
this.$store.commit("SET_LOGOIMG", data.buyerSideLogo);
this.$store.commit("SET_SITENAME", data.siteName);
storage.setItem("siteName", data.siteName);
window.document.title = data.siteName;
//动态获取icon
let link =
document.querySelector("link[rel*='icon']") ||
document.createElement("link");
link.type = "image/x-icon";
link.href = data.buyerSideLogo;
link.rel = "shortcut icon";
document.getElementsByTagName("head")[0].appendChild(link);
}
})
}
};
</script>
<style lang="scss">