From 46c198c101937d35d5c14e83a95e4610532f31fc Mon Sep 17 00:00:00 2001 From: Seven Date: Sun, 18 Jan 2026 03:03:46 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E5=9C=B0=E5=9D=80?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E5=8A=9F=E8=83=BD=EF=BC=8C=E5=88=9B=E5=BB=BA?= =?UTF-8?q?=E5=9C=B0=E5=9D=80=E5=88=97=E8=A1=A8=E5=92=8C=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=9C=B0=E5=9D=80=E9=A1=B5=E9=9D=A2=EF=BC=8C=E9=9B=86=E6=88=90?= =?UTF-8?q?=E8=A1=A8=E5=8D=95=E9=AA=8C=E8=AF=81=E5=92=8C=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components.d.ts | 6 + src/router/index.ts | 10 ++ src/views/address/add.vue | 265 ++++++++++++++++++++++++++++++++ src/views/address/index.vue | 299 ++++++++++++++++++++++++++++++++++++ 4 files changed, 580 insertions(+) create mode 100644 src/views/address/add.vue create mode 100644 src/views/address/index.vue diff --git a/components.d.ts b/components.d.ts index 2926c62..0ed2f86 100644 --- a/components.d.ts +++ b/components.d.ts @@ -16,6 +16,7 @@ declare module 'vue' { Empty: typeof import('./src/components/empty.vue')['default'] IonApp: typeof import('@ionic/vue')['IonApp'] IonAvatar: typeof import('@ionic/vue')['IonAvatar'] + IonBadge: typeof import('@ionic/vue')['IonBadge'] IonButton: typeof import('@ionic/vue')['IonButton'] IonButtons: typeof import('@ionic/vue')['IonButtons'] IonCheckbox: typeof import('@ionic/vue')['IonCheckbox'] @@ -35,7 +36,9 @@ declare module 'vue' { IonTabBar: typeof import('@ionic/vue')['IonTabBar'] IonTabButton: typeof import('@ionic/vue')['IonTabButton'] IonTabs: typeof import('@ionic/vue')['IonTabs'] + IonTextarea: typeof import('@ionic/vue')['IonTextarea'] IonTitle: typeof import('@ionic/vue')['IonTitle'] + IonToggle: typeof import('@ionic/vue')['IonToggle'] IonToolbar: typeof import('@ionic/vue')['IonToolbar'] LayoutDefault: typeof import('./src/components/layout/default.vue')['default'] RouterLink: typeof import('vue-router')['RouterLink'] @@ -49,6 +52,7 @@ declare global { const Empty: typeof import('./src/components/empty.vue')['default'] const IonApp: typeof import('@ionic/vue')['IonApp'] const IonAvatar: typeof import('@ionic/vue')['IonAvatar'] + const IonBadge: typeof import('@ionic/vue')['IonBadge'] const IonButton: typeof import('@ionic/vue')['IonButton'] const IonButtons: typeof import('@ionic/vue')['IonButtons'] const IonCheckbox: typeof import('@ionic/vue')['IonCheckbox'] @@ -68,7 +72,9 @@ declare global { const IonTabBar: typeof import('@ionic/vue')['IonTabBar'] const IonTabButton: typeof import('@ionic/vue')['IonTabButton'] const IonTabs: typeof import('@ionic/vue')['IonTabs'] + const IonTextarea: typeof import('@ionic/vue')['IonTextarea'] const IonTitle: typeof import('@ionic/vue')['IonTitle'] + const IonToggle: typeof import('@ionic/vue')['IonToggle'] const IonToolbar: typeof import('@ionic/vue')['IonToolbar'] const LayoutDefault: typeof import('./src/components/layout/default.vue')['default'] const RouterLink: typeof import('vue-router')['RouterLink'] diff --git a/src/router/index.ts b/src/router/index.ts index 5486d53..569bb8b 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -59,6 +59,16 @@ const routes: Array = [ component: () => import("@/views/real_name/index.vue"), meta: { requiresAuth: true }, }, + { + path: "/address", + component: () => import("@/views/address/index.vue"), + meta: { requiresAuth: true }, + }, + { + path: "/address/add", + component: () => import("@/views/address/add.vue"), + meta: { requiresAuth: true }, + }, ]; const router = createRouter({ diff --git a/src/views/address/add.vue b/src/views/address/add.vue new file mode 100644 index 0000000..722a1b4 --- /dev/null +++ b/src/views/address/add.vue @@ -0,0 +1,265 @@ + + + + + diff --git a/src/views/address/index.vue b/src/views/address/index.vue new file mode 100644 index 0000000..1c05c46 --- /dev/null +++ b/src/views/address/index.vue @@ -0,0 +1,299 @@ + + + + +