2021-05-13 10:56:04 +08:00
|
|
|
<template>
|
|
|
|
<div id="app">
|
2022-05-20 16:40:09 +08:00
|
|
|
<router-view />
|
2021-05-13 10:56:04 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2022-05-20 16:40:09 +08:00
|
|
|
import storage from "@/plugins/storage";
|
|
|
|
import { getBaseSite } from "@/api/common.js";
|
2021-05-13 10:56:04 +08:00
|
|
|
export default {
|
2022-05-20 16:40:09 +08:00
|
|
|
name: "App",
|
|
|
|
mounted() {
|
2022-05-31 09:51:43 +08:00
|
|
|
this.init();
|
2022-05-20 16:40:09 +08:00
|
|
|
},
|
2022-05-31 09:51:43 +08:00
|
|
|
methods:{
|
|
|
|
init(){
|
|
|
|
if(!localStorage.getItem("siteName")||!localStorage.getItem("logoImg")||!localStorage.getItem("sitelogo_expiration_time")) {
|
|
|
|
this.getSite();
|
|
|
|
}else{
|
|
|
|
// 如果缓存过期,则获取最新的信息
|
|
|
|
if (new Date() > localStorage.getItem("sitelogo_expiration_time")) {
|
|
|
|
this.getSite();
|
|
|
|
return;
|
|
|
|
}else{
|
|
|
|
window.document.title = localStorage.getItem("siteName");
|
|
|
|
//动态获取icon
|
|
|
|
let link =document.querySelector("link[rel*='icon']") ||document.createElement("link");
|
|
|
|
link.type = "image/x-icon";
|
|
|
|
link.href = localStorage.getItem("logoImg");
|
|
|
|
link.rel = "shortcut icon";
|
|
|
|
document.getElementsByTagName("head")[0].appendChild(link);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
getSite(){
|
|
|
|
//获取基本站点信息
|
|
|
|
getBaseSite().then((res) => {
|
|
|
|
if (res.success && res.result.settingValue) {
|
|
|
|
let data = JSON.parse(res.result.settingValue);
|
|
|
|
// 过期时间
|
|
|
|
var expirationTime = new Date().setHours(new Date().getHours() + 1);
|
|
|
|
// 存放过期时间
|
|
|
|
localStorage.setItem("sitelogo_expiration_time", expirationTime);
|
|
|
|
// 存放信息
|
|
|
|
localStorage.setItem('siteName', data.siteName);
|
|
|
|
localStorage.setItem('logoImg', data.buyerSideLogo);
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2021-05-13 10:56:04 +08:00
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<style lang="scss">
|
2022-05-20 16:40:09 +08:00
|
|
|
#app {
|
2021-05-13 10:56:04 +08:00
|
|
|
@include background_color($light_background_color);
|
|
|
|
}
|
|
|
|
</style>
|