diff --git a/src/components/common/LoginBg/index.vue b/src/components/common/LoginBg/index.vue index cd9e8e94..8bde57e8 100644 --- a/src/components/common/LoginBg/index.vue +++ b/src/components/common/LoginBg/index.vue @@ -24,6 +24,8 @@ const props = withDefaults(defineProps(), { }); const COLOR_WHITE = '#ffffff'; -const stopColor = computed(() => mixColor(COLOR_WHITE, props.themeColor, 0.7)); +const stopColor = computed(() => { + return mixColor(COLOR_WHITE, props.themeColor, 0.7); +}); diff --git a/src/components/custom/ThemeSwitch/index.vue b/src/components/custom/ThemeSwitch/index.vue index 0b0c0731..153d96aa 100644 --- a/src/components/custom/ThemeSwitch/index.vue +++ b/src/components/custom/ThemeSwitch/index.vue @@ -1,12 +1,13 @@ diff --git a/src/layouts/BasicLayout/components/common/GlobalContent/index.vue b/src/layouts/common/GlobalContent/index.vue similarity index 74% rename from src/layouts/BasicLayout/components/common/GlobalContent/index.vue rename to src/layouts/common/GlobalContent/index.vue index 3948b55d..fffecc5c 100644 --- a/src/layouts/BasicLayout/components/common/GlobalContent/index.vue +++ b/src/layouts/common/GlobalContent/index.vue @@ -1,7 +1,7 @@