From b86f257e3872bd4808aabacb9446d1d9002bbadd Mon Sep 17 00:00:00 2001 From: Seven Date: Sat, 13 Dec 2025 17:39:59 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E4=BA=A4=E6=98=93?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=EF=BC=8C=E6=9B=B4=E6=96=B0=E8=B7=AF=E7=94=B1?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=EF=BC=8C=E4=BC=98=E5=8C=96=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E7=95=8C=E9=9D=A2=E5=92=8C=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components.d.ts | 2 ++ src/components/layout/default.vue | 7 ++++- src/router/index.ts | 4 +++ src/theme/variables.css | 4 +++ src/views/chat/index.vue | 22 ++++++++-------- src/views/onchain-address/index.vue | 2 +- src/views/trade/index.vue | 21 +++++++++++++++ src/views/user/components/user-info.vue | 3 +-- src/views/user/index.vue | 34 ++++++++++++------------- 9 files changed, 67 insertions(+), 32 deletions(-) create mode 100644 src/views/trade/index.vue diff --git a/components.d.ts b/components.d.ts index d7f1ad4..c9aea52 100644 --- a/components.d.ts +++ b/components.d.ts @@ -29,6 +29,7 @@ declare module 'vue' { IonLabel: typeof import('@ionic/vue')['IonLabel'] IonPage: typeof import('@ionic/vue')['IonPage'] IonRouterOutlet: typeof import('@ionic/vue')['IonRouterOutlet'] + IonSearchbar: typeof import('@ionic/vue')['IonSearchbar'] IonTabBar: typeof import('@ionic/vue')['IonTabBar'] IonTabButton: typeof import('@ionic/vue')['IonTabButton'] IonTabs: typeof import('@ionic/vue')['IonTabs'] @@ -63,6 +64,7 @@ declare global { const IonLabel: typeof import('@ionic/vue')['IonLabel'] const IonPage: typeof import('@ionic/vue')['IonPage'] const IonRouterOutlet: typeof import('@ionic/vue')['IonRouterOutlet'] + const IonSearchbar: typeof import('@ionic/vue')['IonSearchbar'] const IonTabBar: typeof import('@ionic/vue')['IonTabBar'] const IonTabButton: typeof import('@ionic/vue')['IonTabButton'] const IonTabs: typeof import('@ionic/vue')['IonTabs'] diff --git a/src/components/layout/default.vue b/src/components/layout/default.vue index 50b81c6..311a65e 100644 --- a/src/components/layout/default.vue +++ b/src/components/layout/default.vue @@ -1,5 +1,5 @@