Browse Source

[Fix][UI Next] Fix dark theme logout. (#7965)

songjianet 3 years ago
parent
commit
79e2c386df

+ 6 - 0
dolphinscheduler-ui-next/src/views/login/index.tsx

@@ -22,6 +22,7 @@ import { useForm } from './use-form'
 import { useTranslate } from './use-translate'
 import { useLogin } from './use-login'
 import { useLocalesStore } from '@/store/locales/locales'
+import { useThemeStore } from "@/store/theme/theme";
 
 const login = defineComponent({
   name: 'login',
@@ -30,6 +31,11 @@ const login = defineComponent({
     const { handleChange } = useTranslate(locale)
     const { handleLogin } = useLogin(state)
     const localesStore = useLocalesStore()
+    const themeStore = useThemeStore()
+
+    if (themeStore.getTheme) {
+      themeStore.setDarkTheme()
+    }
 
     return { t, handleChange, handleLogin, ...toRefs(state), localesStore }
   },

+ 1 - 1
dolphinscheduler-ui-next/src/views/project/list/index.module.scss

@@ -43,7 +43,7 @@
 }
 
 .links {
-  color: #2080f0;
+  color: dodgerblue;
   text-decoration: none;
   cursor: pointer;