/** * 初始化加载效果的svg格式logo * @param { string }id - 元素id */ function initSvgLogo(id) { const svgStr = ` `; const appEl = document.querySelector(id); const div = document.createElement('div'); div.innerHTML = svgStr; if (appEl) { appEl.appendChild(div); } } function addThemeColorCssVars() { const key = '__THEME_COLOR__'; const themeColor = window.localStorage.getItem(key) || '#1890ff'; const cssVars = `--primary-color: ${themeColor}`; document.documentElement.style.cssText = cssVars; } initSvgLogo('#loadingLogo'); addThemeColorCssVars();