fix: update Login view layout adjustments

This commit is contained in:
pnoker
2026-05-24 01:09:48 +08:00
parent f30c4a2f74
commit 2ab419dea8
+2 -2
View File
@@ -100,8 +100,8 @@
const formDataRef = ref<FormInstance>();
// 定义响应式数据
const tenant = authStore.getTenant || 'default';
const name = authStore.getName || 'dc3';
const tenant = typeof authStore.getTenant === 'string' ? authStore.getTenant : 'default';
const name = typeof authStore.getName === 'string' ? authStore.getName : 'dc3';
const reactiveData = reactive<LoginViewState>({
isHide: 'View',
passwordType: 'password',