feat: 添加法币充值页面,更新相关路由和组件,优化钱包卡片以支持充值功能

This commit is contained in:
2025-12-14 00:52:28 +07:00
parent 2c4df90b31
commit f78dfa87ed
9 changed files with 123 additions and 14 deletions

6
components.d.ts vendored
View File

@@ -38,6 +38,8 @@ declare module 'vue' {
IonPage: typeof import('@ionic/vue')['IonPage']
IonRouterOutlet: typeof import('@ionic/vue')['IonRouterOutlet']
IonSearchbar: typeof import('@ionic/vue')['IonSearchbar']
IonSelect: typeof import('@ionic/vue')['IonSelect']
IonSelectOption: typeof import('@ionic/vue')['IonSelectOption']
IonTabBar: typeof import('@ionic/vue')['IonTabBar']
IonTabButton: typeof import('@ionic/vue')['IonTabButton']
IonTabs: typeof import('@ionic/vue')['IonTabs']
@@ -50,6 +52,7 @@ declare module 'vue' {
UiDivider: typeof import('./src/components/ui/divider/index.vue')['default']
UiInput: typeof import('./src/components/ui/input/index.vue')['default']
UiInputLabel: typeof import('./src/components/ui/input-label/index.vue')['default']
UiSelectLabel: typeof import('./src/components/ui/select-label/index.vue')['default']
}
}
@@ -81,6 +84,8 @@ declare global {
const IonPage: typeof import('@ionic/vue')['IonPage']
const IonRouterOutlet: typeof import('@ionic/vue')['IonRouterOutlet']
const IonSearchbar: typeof import('@ionic/vue')['IonSearchbar']
const IonSelect: typeof import('@ionic/vue')['IonSelect']
const IonSelectOption: typeof import('@ionic/vue')['IonSelectOption']
const IonTabBar: typeof import('@ionic/vue')['IonTabBar']
const IonTabButton: typeof import('@ionic/vue')['IonTabButton']
const IonTabs: typeof import('@ionic/vue')['IonTabs']
@@ -93,4 +98,5 @@ declare global {
const UiDivider: typeof import('./src/components/ui/divider/index.vue')['default']
const UiInput: typeof import('./src/components/ui/input/index.vue')['default']
const UiInputLabel: typeof import('./src/components/ui/input-label/index.vue')['default']
const UiSelectLabel: typeof import('./src/components/ui/select-label/index.vue')['default']
}