Commit 4b86d57247ef64d69b7315339ca8b0bf9e1cce8a

Authored by ww
1 parent cd67eb6b

fix: 修复登录页面退出登录后无法获取平台信息

Showing 1 changed file with 2 additions and 2 deletions
... ... @@ -97,8 +97,8 @@
97 97
98 98 onMounted(() => {
99 99 const platform = getPlatFormInfo();
100   - defaultLogo.value = platform.logo || '';
101   - show.value = !platform.background;
  100 + defaultLogo.value = platform?.logo || '';
  101 + show.value = !platform?.background;
102 102 });
103 103 </script>
104 104 <style lang="less">
... ...