chore: icons border color (#440)

* chore: icons border color

* build: publish web 1.1.9
This commit is contained in:
BiggerRain
2025-04-25 14:54:32 +08:00
committed by GitHub
parent 0f18c0a597
commit a044642636
8 changed files with 17 additions and 13 deletions

View File

@@ -21,5 +21,12 @@ export default useScript;
export const useIconfontScript = () => {
useScript('/assets/fonts/icons/iconfont.js');
const appStore = JSON.parse(localStorage.getItem("app-store") || "{}");
let baseURL = appStore.state?.endpoint_http
if (!baseURL || baseURL === "undefined") {
baseURL = "";
}
useScript(baseURL + '/assets/fonts/icons/iconfont.js');
};