diff --git a/jeecgboot-vue3-master/index.html b/jeecgboot-vue3-master/index.html index ee7e9e31..defc2fe7 100644 --- a/jeecgboot-vue3-master/index.html +++ b/jeecgboot-vue3-master/index.html @@ -161,7 +161,7 @@
- +
@@ -169,6 +169,20 @@
+ diff --git a/jeecgboot-vue3-master/src/App.vue b/jeecgboot-vue3-master/src/App.vue index dd0ee18c..7cb7cca6 100644 --- a/jeecgboot-vue3-master/src/App.vue +++ b/jeecgboot-vue3-master/src/App.vue @@ -11,16 +11,6 @@ import { AppProvider } from '/@/components/Application'; import { useTitle } from '/@/hooks/web/useTitle'; import { useLocale } from '/@/locales/useLocale'; - import { useSettingStore } from '/@/store/modules/useSettingStore'; - const { setting } = useSettingStore(); - (function () { - const link = document.createElement('link'); - link.rel = 'icon'; - link.href = setting.logo; - - const head = document.head || document.getElementsByTagName('head')[0]; - head.appendChild(link); - })(); // 解决日期时间国际化问题 import 'dayjs/locale/zh-cn'; diff --git a/jeecgboot-vue3-master/src/store/modules/useSettingStore.ts b/jeecgboot-vue3-master/src/store/modules/useSettingStore.ts index 68b760e1..0be1b944 100644 --- a/jeecgboot-vue3-master/src/store/modules/useSettingStore.ts +++ b/jeecgboot-vue3-master/src/store/modules/useSettingStore.ts @@ -16,7 +16,6 @@ const setting = { composition: '', }; async function getSetting(setting) { - console.count('请求---'); const res = await axios({ method: 'post', url: `${import.meta.env.VITE_GLOB_DOMAIN_URL}/sysconfiguration/sysConfiguration/findconfig` }); Object.assign(setting, res.data.result); @@ -25,11 +24,11 @@ async function getSetting(setting) { export const useSettingStore = defineStore('setting', { state: () => { - getSetting(setting); + const isGot = getSetting(setting); const getDescriptor = (prop: string) => { return { get: () => setting[prop] }; }; - return { setting, getDescriptor }; + return { setting, getDescriptor, isGot }; }, });