允许配置登录注册页面的自定义 Logo

This commit is contained in:
RockYang
2025-01-07 15:13:34 +08:00
parent 9f98491368
commit 8250e876a5
5 changed files with 24 additions and 5 deletions

View File

@@ -53,7 +53,7 @@ import AccountTop from "@/components/AccountTop.vue";
import Captcha from "@/components/Captcha.vue";
const router = useRouter();
const title = ref("Geek-AI");
const title = ref("");
const logo = ref("");
const licenseConfig = ref({});
@@ -79,6 +79,7 @@ onMounted(() => {
})
.catch((e) => {
showMessageError("获取系统配置失败:" + e.message);
title.value = "Geek-AI";
});
getLicenseInfo()