feat: 替换登录的logo

This commit is contained in:
2026-05-26 12:51:24 +08:00
parent 9cc7c21529
commit a5dc11fc1a
3 changed files with 2 additions and 12 deletions

View File

@@ -57,7 +57,7 @@ import { onLogin, goBack, onCheckPhoneLogin, onAppleLogin } from "@/hooks/useGoL
import CheckBox from "@/components/CheckBox/index.vue";
import AgreePopup from "./components/AgreePopup/index.vue";
import { zniconsMap } from "@/static/fonts/znicons";
import { getCurrentConfig } from "@/constant/base";
import { ossChengduUrl } from "@/request/base/baseUrl";
// 是否需要微信手机号授权登录
const needWxAuthLogin = ref(false);
@@ -67,7 +67,7 @@ const serviceAgreement = ref("");
const privacyAgreement = ref("");
// 协议类型
const AgreeType = ref("service");
const logo = computed(() => getCurrentConfig().logo);
const logo = computed(() => `${ossChengduUrl()}login_logo.png`);
const isAppleLogin = ref(false);
const loginButtonText = computed(() =>
isAppleLogin.value ? "Apple ID快捷登录" : "手机号快捷登录"