feat: 重构移动端用户聊天页面

This commit is contained in:
2026-07-11 16:40:40 +08:00
parent 4f75e11a8d
commit 603fb70715
8 changed files with 1157 additions and 221 deletions

View File

@@ -0,0 +1,18 @@
<script setup lang="ts">
import { Layers3 } from "@lucide/vue";
defineProps<{
used: number;
limit: number;
}>();
</script>
<template>
<section class="session-quota" :class="{ exhausted: limit > 0 && used >= limit }" aria-label="当前会话额度">
<div>
<Layers3 :size="18" aria-hidden="true" />
<span>当前会话额度</span>
</div>
<strong>{{ used }}/{{ limit }}</strong>
</section>
</template>