feat: 添加聊天页面和钱包卡组件,优化用户界面和余额格式化逻辑

This commit is contained in:
2025-12-13 13:30:51 +07:00
parent 8337635d40
commit 9f74717c56
8 changed files with 82 additions and 5 deletions

21
src/views/chat/index.vue Normal file
View File

@@ -0,0 +1,21 @@
<script setup lang="ts">
</script>
<template>
<IonPage>
<IonHeader>
<IonToolbar>
<IonTitle>Chat</IonTitle>
</IonToolbar>
</IonHeader>
<IonContent :fullscreen="true">
<IonHeader collapse="condense">
<IonToolbar>
<IonTitle size="large">
Chat
</IonTitle>
</IonToolbar>
</IonHeader>
</IonContent>
</IonPage>
</template>