完成实验部分打磨,准备大作业部分

This commit is contained in:
li-chx
2025-05-03 22:18:45 +08:00
parent eae8781eaa
commit 3ab2c26776
6 changed files with 107 additions and 73 deletions
+12 -9
View File
@@ -1,6 +1,6 @@
<script setup lang="ts">
const avatarURL = ref('');
useSystemStore().currentPage = 'calendar';
const avatarURL = ref('');
onMounted(async () => {
try {
avatarURL.value = (await useUserStore().getAvatarURL())!;
@@ -14,22 +14,25 @@
<template>
<div class="p-6">
<div class="flex md:flex-row flex-col">
<div class="flex-[1] m-2 max-h-80">
<div class="flex flex-row md:flex-col justify-center">
<span class="text-2xl ml-auto mr-auto md:mt-6 mt-20 mb-6"
>欢迎 {{ useUserStore().userName }}
</span>
<div
class="flex-[1] m-2 h-[700px] bg-white rounded-xl border-gray-200 border-2 min-w-48"
>
<div class="flex flex-row md:flex-col justify-center p-4">
<t-image
:src="avatarURL"
alt="头像"
:fit="'contain'"
class="max-h-80 max-w-80 m-auto"
shape="circle"
class="max-h-72 max-w-72 m-auto"
/>
<span class="text-2xl ml-auto mr-auto md:mt-6 mt-20 mb-6"
>欢迎 {{ useUserStore().userName }}
</span>
</div>
</div>
<div class="flex-[2] m-2">
<t-calendar> </t-calendar>
<div class="flex-[2] m-2 rounded-xl border-gray-200 border-2">
<t-calendar class="h-[698px]"> </t-calendar>
</div>
</div>
</div>